From 87956082590c51187cff80fd78f7f0f68b366fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Fri, 11 Sep 2020 19:58:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- System/Process/Process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);