diff --git a/backend/windmill-worker/src/worker.rs b/backend/windmill-worker/src/worker.rs index 0b40386e3d..31275acbc1 100644 --- a/backend/windmill-worker/src/worker.rs +++ b/backend/windmill-worker/src/worker.rs @@ -2826,7 +2826,7 @@ pub async fn handle_queued_job( } #[cfg(not(feature = "enterprise"))] - if job.concurrent_limit.is_some() { + if job.concurrent_limit.is_some() && !job.kind.is_dependency() { logs.push_str("---\n"); logs.push_str("WARNING: This job has concurrency limits enabled. Concurrency limits are an EE feature and the setting is ignored.\n"); logs.push_str("---\n");