Skip to content

Commit

Permalink
cmtn fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet committed Nov 7, 2023
1 parent 7ee644e commit ec8c142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artemis/modules/domain_expiration_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run(self, current_task: Task) -> None:
domain_data = self._query_whois(domain=domain)
self.log.info("Successful whois query for %s expiry=%s", domain, domain_data.expiration_date)
except WhoisQuotaExceeded:
self.log.info("Quota exceeded for whois query for %s", domain)
self.log.info("Quota exceeded for whois query for %s, sleeping 24 hours", domain)
time.sleep(24 * 60 * 60)
domain_data = self._query_whois(domain=domain)
self.log.info(
Expand Down

0 comments on commit ec8c142

Please sign in to comment.