diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-26 06:04:19 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-03-26 06:04:19 +0200 |
commit | 104d8795b882ee413d1cbe882f1fed0da925814d (patch) | |
tree | 6517d295665843036d74c9223dc4956326739136 /Bugzilla | |
parent | 88b32511cf69059e8eab0e8fc8ceb23c0e449c3e (diff) | |
download | bugzilla-104d8795b882ee413d1cbe882f1fed0da925814d.tar.gz bugzilla-104d8795b882ee413d1cbe882f1fed0da925814d.tar.xz |
no bug - run jobqueue faster
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/JobQueue.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/JobQueue.pm b/Bugzilla/JobQueue.pm index c10e859e2..53b088c6e 100644 --- a/Bugzilla/JobQueue.pm +++ b/Bugzilla/JobQueue.pm @@ -106,7 +106,7 @@ sub debug { sub work { my ($self, $delay) = @_; - $delay ||= 5; + $delay ||= 1; my $loop = IO::Async::Loop->new; my $timer = IO::Async::Timer::Periodic->new( first_interval => 0, |