From fa932928ba446a3b54be14ebcafd4f04f909725b Mon Sep 17 00:00:00 2001 From: Bossett Date: Thu, 5 Sep 2024 01:13:17 +0000 Subject: [PATCH] max concurrent ~64? --- src/util/subscription.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/subscription.ts b/src/util/subscription.ts index 460b3d3..c8e5b19 100755 --- a/src/util/subscription.ts +++ b/src/util/subscription.ts @@ -48,7 +48,7 @@ export abstract class FirehoseSubscriptionBase { const [collection] = commit.ops[0].path.split('/') if (includedRecords.has(collection)) { - while (runningEvents > 512) { + while (runningEvents > 64) { await delay(10) }