From dbe27c29dab5165f86828f0d898c4cc916369aa4 Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Tue, 5 Aug 2025 12:19:05 +0000 Subject: [PATCH] fix: do not use special queue config for health check --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2f2ee0a..1cb5bee 100644 --- a/src/index.ts +++ b/src/index.ts @@ -82,7 +82,7 @@ addon.get('/health', async (req: Request, res: Response) => { const url = new URL(source.baseUrl); try { - await fetcher.head(ctx, url, { queueLimit: 1, noCache: true }); + await fetcher.head(ctx, url, { noCache: true }); } catch (error) { if (error instanceof BlockedError) { blockedCount++;