Skip to content

Commit

Permalink
Let's just exclude all exceptions
Browse files Browse the repository at this point in the history
JavascriptException, InvalidSessionIdException,
UnexpectedAlertPresentException, ...

Following up on #83
  • Loading branch information
ghostwords committed Mar 7, 2024
1 parent 211edde commit de9d807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def get_recently_failed_domains():
return domains
revisions = revisions.split('\n')

error_pattern = re.compile("(?:WebDriver|InsecureCertificate)Exception on ([^:]+):")
error_pattern = re.compile("Exception on ([^:]+):")
timeout_pattern = re.compile("Timed out loading (.+)$")
timeout_counts = {}
logs = []
Expand Down

0 comments on commit de9d807

Please sign in to comment.