From f9b398c6ddaf5cd85ca5ddfe6a6470aed362385a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 9 Aug 2023 09:39:57 +0000 Subject: [PATCH] Set pool size to 100 --- app/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/http.php b/app/http.php index df8d3833..aa733572 100644 --- a/app/http.php +++ b/app/http.php @@ -80,7 +80,7 @@ * Create orchestration pool */ $register->set('orchestrationPool', function () { - $pool = new Pool('orchestration-pool', 30, function () { + $pool = new Pool('orchestration-pool', 100, function () { $dockerUser = (string) App::getEnv('OPR_EXECUTOR_DOCKER_HUB_USERNAME', ''); $dockerPass = (string) App::getEnv('OPR_EXECUTOR_DOCKER_HUB_PASSWORD', ''); $orchestration = new Orchestration(new DockerCLI($dockerUser, $dockerPass));