We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 673477f commit db875daCopy full SHA for db875da
src/Illuminate/Queue/Worker.php
@@ -741,6 +741,7 @@ protected function listenForSignals()
741
742
pcntl_signal(SIGQUIT, fn () => $this->shouldQuit = true);
743
pcntl_signal(SIGTERM, fn () => $this->shouldQuit = true);
744
+ pcntl_signal(SIGINT, fn () => $this->shouldQuit = true);
745
pcntl_signal(SIGUSR2, fn () => $this->paused = true);
746
pcntl_signal(SIGCONT, fn () => $this->paused = false);
747
}
0 commit comments