mirror of
https://github.com/idanoo/laravel-resque.git
synced 2024-11-21 16:11:59 +00:00
fix queue option on WorkCommand
This commit is contained in:
parent
8d88957e28
commit
5fd6530f47
@ -46,7 +46,6 @@ class WorkCommand extends IlluminateCommand
|
||||
$interval = (int)$this->option('interval');
|
||||
$count = (int)$this->option('count');
|
||||
|
||||
$queues = explode(',', $queue);
|
||||
$logLevel = $this->getLogLevel();
|
||||
|
||||
if ($count > 1) {
|
||||
@ -60,11 +59,11 @@ class WorkCommand extends IlluminateCommand
|
||||
}
|
||||
|
||||
if (0 === $pid) {
|
||||
$this->startWorker($queues, $interval, $logLevel);
|
||||
$this->startWorker($queue, $interval, $logLevel);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$this->startWorker($queues, $interval, $logLevel);
|
||||
$this->startWorker($queue, $interval, $logLevel);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user