diff --git a/apps/webapp/app/v3/services/concurrencySystem.server.ts b/apps/webapp/app/v3/services/concurrencySystem.server.ts index 8ef33e4792..f151e98515 100644 --- a/apps/webapp/app/v3/services/concurrencySystem.server.ts +++ b/apps/webapp/app/v3/services/concurrencySystem.server.ts @@ -121,11 +121,7 @@ function overrideQueueConcurrencyLimit( overriddenBy?: User ) { const newConcurrencyLimit = Math.max( - Math.min( - concurrencyLimit, - environment.maximumConcurrencyLimit, - environment.organization.maximumConcurrencyLimit - ), + Math.min(concurrencyLimit, environment.maximumConcurrencyLimit), 0 );