From cfa1e6f1e8979199bec2f76912f06f2be9788a14 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 3 Feb 2023 22:39:36 +0100 Subject: [PATCH] increase max concurrent runs --- backend/windmill-queue/src/jobs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/windmill-queue/src/jobs.rs b/backend/windmill-queue/src/jobs.rs index b0d115ffe8..35dadabc99 100644 --- a/backend/windmill-queue/src/jobs.rs +++ b/backend/windmill-queue/src/jobs.rs @@ -45,7 +45,7 @@ lazy_static::lazy_static! { } const MAX_FREE_EXECS: i32 = 1000; -const MAX_FREE_CONCURRENT_RUNS: i32 = 3; +const MAX_FREE_CONCURRENT_RUNS: i32 = 15; pub async fn cancel_job<'c>( username: &str,