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 2ee903a commit 6b40904Copy full SHA for 6b40904
src/ServerFactory.php
@@ -36,9 +36,6 @@ public function createServer(RequestHandlerInterface $requestHandler): LoopInter
36
$loop->addSignal(SIGTERM, function (int $signal) {
37
exit(128 + $signal);
38
});
39
- $loop->addSignal(SIGKILL, function (int $signal) {
40
- exit(128 + $signal);
41
- });
42
$server = new HttpServer($loop, function (ServerRequestInterface $request) use ($requestHandler) {
43
return $requestHandler->handle($request);
44
0 commit comments