Lower concurrency tmeout

This commit is contained in:
Dominic Ferrando
2026-07-18 02:15:10 -04:00
parent 03ccbbc99b
commit 6d89a9750b
+1 -1
View File
@@ -18,7 +18,7 @@ export type EventStatus = Static<typeof EventStatusSchema>;
export type EventSource = "portal" | "printful" | "webflow";
export class EventsService {
static readonly CONCURRENCY_TIMEOUT_MS = minToMs(10);
static readonly CONCURRENCY_TIMEOUT_MS = minToMs(5);
private _lastCleanDate: Date = new Date(0);
get lastCleanDate() { return this._lastCleanDate; };