From 4c6ce12157f3443f20a03460204f9409ff01c30a Mon Sep 17 00:00:00 2001 From: Bossett Date: Tue, 31 Dec 2024 22:41:22 +0000 Subject: [PATCH] lower # of 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 67bab7f..35be703 100755 --- a/src/util/subscription.ts +++ b/src/util/subscription.ts @@ -13,7 +13,7 @@ import WebSocket from 'ws' import { Semaphore } from 'async-mutex' -const semaphore = new Semaphore(48) +const semaphore = new Semaphore(24) const includedRecords = new Set(['app.bsky.feed.post'])