We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 750e315 commit 981386fCopy full SHA for 981386f
1 file changed
src/Command/RunRoundRobinConsumerCommand.php
@@ -37,6 +37,10 @@ public function __construct(private readonly RoundRobinConsumer $consumer)
37
*/
38
public function getSubscribedSignals(): array
39
{
40
+ if (!\function_exists('pcntl_signal')) {
41
+ return [];
42
+ }
43
+
44
return [
45
\SIGINT,
46
\SIGTERM,
0 commit comments