fix: do not use special queue config for health check
This commit is contained in:
parent
2ab20dc9b8
commit
dbe27c29da
1 changed files with 1 additions and 1 deletions
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue