mirror of
https://bitbucket.org/anticensority/antizapret-pac-generator-light.git
synced 2025-04-06 22:53:36 +03:00
NXDOMAIN script: do not thread domain as broken if the answer is empty
This commit is contained in:
parent
88d66d1e41
commit
04337a4486
1 changed files with 4 additions and 2 deletions
|
@ -34,9 +34,11 @@ class AZResolver(dns.asyncresolver.Resolver):
|
|||
await self.resolve(domain)
|
||||
|
||||
except (dns.exception.Timeout, dns.resolver.NXDOMAIN,
|
||||
dns.resolver.YXDOMAIN, dns.resolver.NoAnswer,
|
||||
dns.resolver.NoNameservers):
|
||||
dns.resolver.YXDOMAIN, dns.resolver.NoNameservers):
|
||||
return domain
|
||||
except dns.resolver.NoAnswer:
|
||||
# Do not thread domain as broken if the answer is empty
|
||||
pass
|
||||
|
||||
async def runTasksWithProgress(tasks):
|
||||
progress = 0
|
||||
|
|
Loading…
Add table
Reference in a new issue