diff --git a/System/Process/Process.php b/System/Process/Process.php index 3855e22d..5358a0a6 100644 --- a/System/Process/Process.php +++ b/System/Process/Process.php @@ -33,7 +33,7 @@ abstract class Process extends \Swoole\Process $class = get_called_class(); parent::__construct(function ($process) use ($name, $class) { if (Snowflake::isLinux()) { - $this->name($class . ':' . $name); + $this->name('Processes: ' . $class . '::class'); } $this->onHandler($process); }, false, 1, true);