diff --git a/src/Illuminate/Queue/Worker.php b/src/Illuminate/Queue/Worker.php index 36ed870155ab..04b406b2bcbd 100644 --- a/src/Illuminate/Queue/Worker.php +++ b/src/Illuminate/Queue/Worker.php @@ -113,6 +113,9 @@ protected function daemonShouldRun() */ protected function runNextJobForDaemon($connectionName, $queue, WorkerOptions $options) { + return $this->runNextJob($connectionName, $queue, $options); + + // Removing forking for now because it doesn't work with SQS... if (! $options->timeout) { $this->runNextJob($connectionName, $queue, $options); } elseif ($processId = pcntl_fork()) {