diff --git a/score/Core/BaseServer.php b/score/Core/BaseServer.php index 4b0e983b..96d4d142 100755 --- a/score/Core/BaseServer.php +++ b/score/Core/BaseServer.php @@ -103,6 +103,8 @@ class BaseServer { public function __construct() { // set config Swfy::$config = self::$config; + // start runtime Coroutine + self::runtimeEnableCoroutine(); // set timeZone self::setTimeZone(); // include common function diff --git a/score/MPHP.php b/score/MPHP.php index e949410b..303ac8e9 100755 --- a/score/MPHP.php +++ b/score/MPHP.php @@ -39,7 +39,7 @@ defined('SWOOLEFY_SYS_COLLECTOR_CHANNEL') or define('SWOOLEFY_SYS_COLLECTOR_CHANNEL', 'sys_collector_channel'); // 定义版本 -defined('SWOOLEFY_VERSION') or define('SWOOLEFY_VERSION', '4.1.2'); +defined('SWOOLEFY_VERSION') or define('SWOOLEFY_VERSION', '4.1.3'); class MPHP {