Skip to content

Commit 0dc7aa8

Browse files
romanhabibovTotktonada
authored andcommitted
test: reduce number of workers in config
Prevent possible error "nginx: [emerg] the maximum number of files supported by select() is 1024". The cause of the error is an attempt to use the select() by default.
1 parent d20dac0 commit 0dc7aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ngx_confs/nginx.dev.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ pid logs/nginx.pid;
1010

1111
error_log stderr;
1212

13-
events {worker_connections 4000; multi_accept on;}
13+
events {worker_connections 1000; multi_accept on;}
1414

1515
include tnt_server_test.conf;

0 commit comments

Comments
 (0)