Skip to content

Commit

Permalink
updates for Swoole 4.8.9
Browse files Browse the repository at this point in the history
Signed-off-by: Demin Yin <[email protected]>
  • Loading branch information
deminy committed Apr 18, 2022
1 parent dd87843 commit 8f82ba3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/swoole/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

declare(strict_types=1);

define('SWOOLE_VERSION', '4.8.8');
define('SWOOLE_VERSION_ID', 40808);
define('SWOOLE_VERSION', '4.8.9');
define('SWOOLE_VERSION_ID', 40809);
define('SWOOLE_MAJOR_VERSION', 4);
define('SWOOLE_MINOR_VERSION', 8);
define('SWOOLE_RELEASE_VERSION', 8);
define('SWOOLE_RELEASE_VERSION', 9);
define('SWOOLE_EXTRA_VERSION', '');
define('SWOOLE_DEBUG', '');
define('SWOOLE_HAVE_COMPRESSION', '1');
Expand Down Expand Up @@ -113,6 +113,7 @@
define('SWOOLE_ERROR_HTTP2_STREAM_NO_HEADER', 3002);
define('SWOOLE_ERROR_HTTP2_STREAM_NOT_FOUND', 3003);
define('SWOOLE_ERROR_HTTP2_STREAM_IGNORE', 3004);
define('SWOOLE_ERROR_HTTP2_SEND_CONTROL_FRAME_FAILED', 3005);
define('SWOOLE_ERROR_AIO_BAD_REQUEST', 4001);
define('SWOOLE_ERROR_AIO_CANCELED', 4002);
define('SWOOLE_ERROR_AIO_TIMEOUT', 4003);
Expand Down
3 changes: 0 additions & 3 deletions src/swoole_library/src/core/Server/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ class Helper
'worker_num' => true,
'max_wait_time' => true,
'max_queued_bytes' => true,
'max_concurrency' => true,
'worker_max_concurrency' => true,
'enable_coroutine' => true,
'send_timeout' => true,
'dispatch_mode' => true,
Expand Down Expand Up @@ -177,7 +175,6 @@ class Helper
'enable_preemptive_scheduler' => true,
'c_stack_size' => true,
'stack_size' => true,
'name_resolver' => true,
'dns_cache_expire' => true,
'dns_cache_capacity' => true,
'max_concurrency' => true,
Expand Down

0 comments on commit 8f82ba3

Please sign in to comment.