diff --git a/System/Process/Process.php b/System/Process/Process.php index a0d6ca0a..0a8c5911 100644 --- a/System/Process/Process.php +++ b/System/Process/Process.php @@ -33,7 +33,7 @@ abstract class Process extends \Swoole\Process parent::__construct(function ($process) use ($name, $class) { if (Snowflake::isLinux()) { $prefix = ucfirst(rtrim(Snowflake::app()->id, ':')); - $this->name($prefix . ' processes: ' . $class . '::class'); + $this->name($prefix . ' ' . $class . '::class'); } $this->onHandler($process); }, false, 1, $enable_coroutine);