Skip to content

Commit

Permalink
change env for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hatamiarash7 committed Jul 25, 2023
1 parent e2dc5c5 commit 79e3ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_filter/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
blocked_ips = {'10.10.34.34', '10.10.34.35', '10.10.34.36'}
resolver = dns.resolver.Resolver()
resolver.nameservers = [
'178.22.122.100' if 'I_AM_CI' in os.environ else '8.8.8.8'
'178.22.122.100' if 'CI' in os.environ else '8.8.8.8'
]
headers = ['Address', 'Status']

Expand Down

0 comments on commit 79e3ed1

Please sign in to comment.