We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6056294 commit fd07991Copy full SHA for fd07991
2 files changed
.github/workflows/CD.yml
@@ -60,6 +60,7 @@ jobs:
60
pip3 --version
61
mkdir -p cache
62
ls -lh cache
63
+ ulimit -a
64
65
- name: Setup
66
run: |
@@ -76,9 +77,6 @@ jobs:
76
77
# make all
78
# ./scripts/process_all.sh
79
set -x
- ulimit -a
80
- ulimit -n unlimited
81
82
83
# Remove wildcard domains from `cache/nxdomains`
84
if [ -s cache/nxdomains ]; then
scripts/process.py
@@ -20,7 +20,7 @@
20
import dns.rcode
21
import util
22
23
-MAX_WORKERS = 200
+MAX_WORKERS = 150
24
DNS_TIMEOUT = 5 # in seconds
25
DNS_SERVERS = [ # Use multiple DNS servers to avoid rate limit
26
# Cloudflare
@@ -36,8 +36,8 @@
36
'149.112.112.112',
37
38
# OpenDNS
39
- '208.67.222.222',
40
- '208.67.220.220',
+ # '208.67.222.222',
+ # '208.67.220.220',
41
42
# Control D
43
# '76.76.2.0',
0 commit comments