From de9d8071e883b97a6bbb990f15e8a734b3f4b378 Mon Sep 17 00:00:00 2001 From: Alexei Date: Thu, 7 Mar 2024 09:27:44 -0500 Subject: [PATCH] Let's just exclude all exceptions JavascriptException, InvalidSessionIdException, UnexpectedAlertPresentException, ... Following up on https://github.com/EFForg/badger-sett/issues/83 --- crawler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawler.py b/crawler.py index 0c5cfe2..83dd95b 100755 --- a/crawler.py +++ b/crawler.py @@ -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 = []