From cb29e11b3e895d0651bc04046cc1ad11fa9868a9 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Sat, 11 Jan 2025 16:44:33 +0800 Subject: [PATCH] Chore: reduce parallel doamin alive check [skip ci] --- Build/validate-domain-alive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/validate-domain-alive.ts b/Build/validate-domain-alive.ts index eeb76cfe..008c72fc 100644 --- a/Build/validate-domain-alive.ts +++ b/Build/validate-domain-alive.ts @@ -7,7 +7,7 @@ import { newQueue } from '@henrygd/queue'; import { isDomainAlive, keyedAsyncMutexWithQueue } from './lib/is-domain-alive'; import { fdir as Fdir } from 'fdir'; -const queue = newQueue(32); +const queue = newQueue(24); const deadDomains: string[] = []; function onDomain(args: [string, boolean]) {