fix: do not use special queue config for health check

This commit is contained in:
WebStreamr 2025-08-05 12:19:05 +00:00
parent 2ab20dc9b8
commit dbe27c29da
No known key found for this signature in database

View file

@ -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++;