feat(#56): Address PR comments

This commit is contained in:
Josh Creek
2026-01-10 12:37:43 +00:00
parent b1b6e63b6f
commit b30be24fd5
6 changed files with 187 additions and 13 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ export function createCatchRecordWriteQueue(options: CreateCatchRecordWriteQueue
getPendingCount: () => number;
clearError: () => void;
} {
const { endpointUrl, fetchFn, batchSize = 100, concurrency = 2 } = options;
const { endpointUrl, fetchFn, batchSize = 100, concurrency = 1 } = options;
const items = new Map<string, QueueItem>();
let scheduled: ReturnType<typeof setTimeout> | null = null;