Skip to content

Commit

Permalink
[FIX] Going around the rate-limiting of RIPE-NCC
Browse files Browse the repository at this point in the history
  • Loading branch information
altf4arnold committed Jun 15, 2024
1 parent a39daa5 commit 515d8d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions atlas/atlascreator.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ def main():
db = TLD.objects.get(tld=tld)
unicodetlds.append(db.unicodetld)
for tld in unicodetlds:
webrequest(tld, 4)
webrequest(tld, 6)
if db.atlasv4 is None:
webrequest(tld, 4)
if db.atlasv6 is None:
webrequest(tld, 6)


if __name__ == "__main__":
Expand Down

0 comments on commit 515d8d3

Please sign in to comment.