From b87cd5bd33e576577bd2fd6a65fcf06b0b27fd8b Mon Sep 17 00:00:00 2001 From: Dmytro Stebaiev Date: Wed, 10 Jul 2024 16:01:25 +0300 Subject: [PATCH] Reduce the limit --- src/upgrader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/upgrader.ts b/src/upgrader.ts index 5d1fe94..8105f39 100644 --- a/src/upgrader.ts +++ b/src/upgrader.ts @@ -31,7 +31,7 @@ interface Project { const withoutNull = (array: Array) => array. filter((element) => element !== null) as Array; -const maxSimultaneousDeployments = 10; +const maxSimultaneousDeployments = 5; // 10 minutes const deployTimeout = 60e4;