chore: remove concurrency from testing

This commit is contained in:
Scott Wilson
2025-01-15 22:24:47 -08:00
parent e78ad1147b
commit 661b31f762

View File

@@ -273,7 +273,6 @@ export const queueServiceFactory = (
workerContainer[name] = new Worker<TQueueJobTypes[T]["payload"], void, TQueueJobTypes[T]["name"]>(name, jobFn, {
...queueSettings,
concurrency: 3, // TODO: remove
connection
});
};