diff options
author | Mario Vavti <mario@mariovavti.com> | 2022-12-12 23:26:45 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2022-12-12 23:26:45 +0100 |
commit | c9e170dfcc83a946fda7d4335c136ed40b3c579d (patch) | |
tree | 52ee00eefa5ab9f660f3dbf1135b33a11e1cb295 /Zotlabs/Daemon/Cron.php | |
parent | e3a19469eb6940249ad87662399d14dbf2a79847 (diff) | |
download | volse-hubzilla-c9e170dfcc83a946fda7d4335c136ed40b3c579d.tar.gz volse-hubzilla-c9e170dfcc83a946fda7d4335c136ed40b3c579d.tar.bz2 volse-hubzilla-c9e170dfcc83a946fda7d4335c136ed40b3c579d.zip |
queueworker: introduce new interval config queueworker.queue_interval - defaults to 500000 microseconds. No config UI yet.
Diffstat (limited to 'Zotlabs/Daemon/Cron.php')
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index b8bcbe3a2..640f06102 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -52,7 +52,7 @@ class Cron { require_once('include/account.php'); remove_expired_registrations(); - $interval = get_config('system', 'delivery_interval', 3); + $interval = get_config('queueworker', 'queue_interval', 500000); // expire any expired items @@ -69,7 +69,7 @@ class Cron { Master::Summon(['Notifier', 'drop', $rr['id']]); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } @@ -102,7 +102,7 @@ class Cron { Master::Summon(array('Directory', $rr['channel_id'], 'force')); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } @@ -159,7 +159,7 @@ class Cron { Master::Summon(array('Notifier', 'wall-new', $rr['id'])); if ($interval) { - @time_sleep_until(microtime(true) + (float)$interval); + usleep($interval); } } } |