diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-06-18 21:54:22 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-06-18 21:54:22 +0300 |
| commit | df8403be082050b89eb62b9d3a369a1e1e9b76c9 (patch) | |
| tree | ccb757d7eb477d441500dcac7a3b70d2a08b622f /update.php | |
| parent | db3e67b3fe94f3752b6ff5af61703d1b60b5fcb5 (diff) | |
set DAEMON_FEED_LIMIT to 50 by default and use it consistently between forking daemon and any other update methods
Diffstat (limited to 'update.php')
| -rwxr-xr-x | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index ba31544f0..c8fe69fdb 100755 --- a/update.php +++ b/update.php @@ -253,7 +253,7 @@ exit(1); } - RSSUtils::update_daemon_common(isset($options["pidlock"]) ? 50 : Config::get(Config::DAEMON_FEED_LIMIT), $options); + RSSUtils::update_daemon_common(Config::get(Config::DAEMON_FEED_LIMIT), $options); if (!isset($options["pidlock"]) || $options["task"] == "0") RSSUtils::housekeeping_common(); |