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); }