[FIX] Going around the rate-limiting of RIPE-NCC
This commit is contained in:
parent
a39daa5fcd
commit
515d8d3ebc
|
@ -95,8 +95,10 @@ def main():
|
||||||
db = TLD.objects.get(tld=tld)
|
db = TLD.objects.get(tld=tld)
|
||||||
unicodetlds.append(db.unicodetld)
|
unicodetlds.append(db.unicodetld)
|
||||||
for tld in unicodetlds:
|
for tld in unicodetlds:
|
||||||
webrequest(tld, 4)
|
if db.atlasv4 is None:
|
||||||
webrequest(tld, 6)
|
webrequest(tld, 4)
|
||||||
|
if db.atlasv6 is None:
|
||||||
|
webrequest(tld, 6)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in a new issue