diff options
Diffstat (limited to 'lib/queuehandler.php')
-rw-r--r-- | lib/queuehandler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/queuehandler.php b/lib/queuehandler.php index 470b595ba..a1214986a 100644 --- a/lib/queuehandler.php +++ b/lib/queuehandler.php @@ -87,8 +87,8 @@ class QueueHandler { $start = microtime(); $this->idle(); $used = microtime() - $start; - if ($used < 5000000) { - usleep(5000000 - $used); + if ($used < 3000000) { + usleep(3000000 - $used); } } } while (true); |