This commit is contained in:
2022-06-23 01:18:19 +08:00
parent ab6c582025
commit 47f1a6c4f5
+1 -3
View File
@@ -33,13 +33,12 @@ class OnServerManager extends Server
/** /**
* @param \Swoole\Server $server * @param \Swoole\Server $server
* @throws ConfigException * @throws ConfigException
* @throws ReflectionException
* @throws ContainerExceptionInterface * @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface * @throws NotFoundExceptionInterface
*/ */
public function onManagerStart(\Swoole\Server $server) public function onManagerStart(\Swoole\Server $server)
{ {
Kiri::setProcessName(sprintf('manger[%d].0', $server->manager_pid)); Kiri::setProcessName(sprintf('manger process[%d]', $server->manager_pid));
$this->dispatch->dispatch(new OnManagerStart($server)); $this->dispatch->dispatch(new OnManagerStart($server));
} }
@@ -49,7 +48,6 @@ class OnServerManager extends Server
* @param \Swoole\Server $server * @param \Swoole\Server $server
* @throws ContainerExceptionInterface * @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface * @throws NotFoundExceptionInterface
* @throws ReflectionException
*/ */
public function onManagerStop(\Swoole\Server $server) public function onManagerStop(\Swoole\Server $server)
{ {