Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 59ded92

Browse files
committed
fix typo in configuring server process type
1 parent e66900d commit 59ded92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HttpServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ protected function createSwooleServer()
135135
$host = $config->get('swoole_http.server.host');
136136
$port = $config->get('swoole_http.server.port');
137137
$socketType = $config->get('swoole_http.server.socket_type', SWOOLE_SOCK_TCP);
138-
$processType = $config->get('swoole.http.server.process_type', SWOOLE_PROCESS);
138+
$processType = $config->get('swoole_http.server.process_type', SWOOLE_PROCESS);
139139

140140
static::$server = new $server($host, $port, $processType, $socketType);
141141
}

0 commit comments

Comments
 (0)