Skip to content

Commit b30697c

Browse files
committed
Remove concurrency limit when creating background worker tasks
1 parent 750c868 commit b30697c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/v3/services/createBackgroundWorker.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export async function createBackgroundTasks(
213213
taskidentifier: task.id,
214214
});
215215
await marqs?.updateQueueConcurrencyLimits(environment, taskQueue.name, concurrencyLimit);
216-
} else if (concurrencyLimit === null) {
216+
} else {
217217
logger.debug("CreateBackgroundWorkerService: removing concurrency limit", {
218218
workerId: worker.id,
219219
taskQueue,

0 commit comments

Comments
 (0)