From 871d15b064af37f12454fbe54d52d4dd45e22ab0 Mon Sep 17 00:00:00 2001 From: Bossett Date: Tue, 31 Dec 2024 06:14:31 +0000 Subject: [PATCH] 8 concurrent --- 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 160dc4c..0cc3b95 100755 --- a/src/util/subscription.ts +++ b/src/util/subscription.ts @@ -55,7 +55,7 @@ export abstract class FirehoseSubscriptionBase { }, heartbeatIntervalMs: 30000, }) - this.semaphore = new Semaphore(16) + this.semaphore = new Semaphore(8) } abstract handleEvent(evt: RepoEvent): Promise