We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77d9672 commit 23c1276Copy full SHA for 23c1276
1 file changed
src/Illuminate/Queue/Worker.php
@@ -113,6 +113,9 @@ protected function daemonShouldRun()
113
*/
114
protected function runNextJobForDaemon($connectionName, $queue, WorkerOptions $options)
115
{
116
+ return $this->runNextJob($connectionName, $queue, $options);
117
+
118
+ // Removing forking for now because it doesn't work with SQS...
119
if (! $options->timeout) {
120
$this->runNextJob($connectionName, $queue, $options);
121
} elseif ($processId = pcntl_fork()) {
0 commit comments