mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
Adding support for intervals of less than 1 second.
This commit is contained in:
parent
5ff6d8b871
commit
cff5d779b4
@ -175,7 +175,7 @@ class Resque_Worker
|
|||||||
else {
|
else {
|
||||||
$this->updateProcLine('Waiting for ' . implode(',', $this->queues));
|
$this->updateProcLine('Waiting for ' . implode(',', $this->queues));
|
||||||
}
|
}
|
||||||
sleep($interval);
|
usleep($interval*1000000);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user