From ab679d136406dce1d299c2aafeb6a7bf771a1ca9 Mon Sep 17 00:00:00 2001 From: Alexei Date: Thu, 7 Mar 2024 09:21:56 -0500 Subject: [PATCH] Let's just exclude all exceptions JavascriptException, 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 = []