summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2024-06-18 21:54:22 +0300
committerAndrew Dolgov <[email protected]>2024-06-18 21:54:22 +0300
commitdf8403be082050b89eb62b9d3a369a1e1e9b76c9 (patch)
treeccb757d7eb477d441500dcac7a3b70d2a08b622f /classes
parentdb3e67b3fe94f3752b6ff5af61703d1b60b5fcb5 (diff)
set DAEMON_FEED_LIMIT to 50 by default and use it consistently between forking daemon and any other update methods
Diffstat (limited to 'classes')
-rw-r--r--classes/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Config.php b/classes/Config.php
index dff991463..d28a259c9 100644
--- a/classes/Config.php
+++ b/classes/Config.php
@@ -238,7 +238,7 @@ class Config {
Config::FILE_FETCH_TIMEOUT => [ 45, Config::T_INT ],
Config::FILE_FETCH_CONNECT_TIMEOUT => [ 15, Config::T_INT ],
Config::DAEMON_UPDATE_LOGIN_LIMIT => [ 30, Config::T_INT ],
- Config::DAEMON_FEED_LIMIT => [ 500, Config::T_INT ],
+ Config::DAEMON_FEED_LIMIT => [ 50, Config::T_INT ],
Config::DAEMON_SLEEP_INTERVAL => [ 120, Config::T_INT ],
Config::MAX_CACHE_FILE_SIZE => [ 64*1024*1024, Config::T_INT ],
Config::MAX_DOWNLOAD_FILE_SIZE => [ 16*1024*1024, Config::T_INT ],