2022-06-23 Fred Gleason <fredg@paravelsystems.com>

* Changed the default '--process-interval=' value from 60 seconds
	to 30 seconds in rdrssd(8).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-06-23 13:22:50 -04:00
parent e734c46332
commit 613dcc2b46
2 changed files with 5 additions and 2 deletions

View File

@@ -20880,3 +20880,6 @@
deleted immediately after being made active if the 'Air Date/Time' deleted immediately after being made active if the 'Air Date/Time'
was set for the future and 'Item Expires' was set to 'No' in the was set for the future and 'Item Expires' was set to 'No' in the
'Editing Item' dialog. 'Editing Item' dialog.
2022-06-23 Fred Gleason <fredg@paravelsystems.com>
* Changed the default '--process-interval=' value from 60 seconds
to 30 seconds in rdrssd(8).

View File

@@ -2,7 +2,7 @@
// //
// Rivendell RSS Processor Service // Rivendell RSS Processor Service
// //
// (C) Copyright 2020 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2020-2022 Fred Gleason <fredg@paravelsystems.com>
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as // it under the terms of the GNU General Public License version 2 as
@@ -24,7 +24,7 @@
#include <QObject> #include <QObject>
#include <QTimer> #include <QTimer>
#define RDRSSD_DEFAULT_PROCESS_INTERVAL 60000 #define RDRSSD_DEFAULT_PROCESS_INTERVAL 30000
#define RDRSSD_USAGE "[--process-interval=<secs>]\n\n" #define RDRSSD_USAGE "[--process-interval=<secs>]\n\n"
class MainObject : public QObject class MainObject : public QObject