From 4982dc2104b54dc776aa2f1086c5abfb312460fe Mon Sep 17 00:00:00 2001 From: "as2252258@163.com" Date: Mon, 1 Mar 2021 00:38:35 +0800 Subject: [PATCH] modify --- 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 84ca5a87..b83994d3 100644 --- a/System/Process/Process.php +++ b/System/Process/Process.php @@ -30,7 +30,7 @@ abstract class Process extends \Swoole\Process implements SProcess */ public function __construct($application, $name, $enable_coroutine = true) { - parent::__construct([$this, '_load'], true, 1, $enable_coroutine); + parent::__construct([$this, '_load'], false, 1, $enable_coroutine); $this->application = $application; Snowflake::setWorkerId($this->pid); }