This commit is contained in:
2021-11-19 04:00:31 +08:00
parent 59243a6fed
commit 0f238f488d
+2 -2
View File
@@ -85,7 +85,7 @@ class HotReload extends Command
return 0; return 0;
} }
/** /**
* @throws Exception * @throws Exception
*/ */
@@ -95,7 +95,7 @@ class HotReload extends Command
$this->driver->clear(); $this->driver->clear();
$pid = file_get_contents(storage('.swoole.pid')); $pid = file_get_contents(storage('.swoole.pid'));
if (!empty($pid) && Process::kill($pid, 0)) { if (!empty($pid) && Process::kill($pid, 0)) {
Process::kill($pid, SIGTERM); var_dump(Process::kill($pid, SIGTERM));
} }
var_dump('over'); var_dump('over');
} }