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.
call terminate() on null
1 parent cfc8a70 commit 21bf8b3Copy full SHA for 21bf8b3
bin/roadrunner-worker
@@ -58,4 +58,6 @@ while ($psr7Request = $psr7Client->waitRequest()) {
58
$worker->handle($request, $context);
59
}
60
61
-$worker->terminate();
+if (! is_null($worker)) {
62
+ $worker->terminate();
63
+}
0 commit comments