From 67edfd843c1e5cc90e9f17315d7b042a8edcc434 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 27 Feb 2024 22:16:51 +0100 Subject: [PATCH] fix(CI): Start 3 remote workers as well so we can relay messages when accepting invites Signed-off-by: Joas Schilling --- tests/integration/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/run.sh b/tests/integration/run.sh index 82c19bd06d89..d17538127ccd 100755 --- a/tests/integration/run.sh +++ b/tests/integration/run.sh @@ -33,7 +33,7 @@ PORT_FED=8180 export PORT_FED echo "" > phpserver_fed.log -php -S localhost:${PORT_FED} -t ${ROOT_DIR} &> phpserver_fed.log & +PHP_CLI_SERVER_WORKERS=3 php -S localhost:${PORT_FED} -t ${ROOT_DIR} &> phpserver_fed.log & PHPPID2=$! echo -e "Running on process ID: \033[1;35m$PHPPID2\033[0m"