Fetching - False alerts issue #962 - be sure to avoid triggering changedetection when checksums were the same (#1410)

926-empty-change-alerts
dgtlmoon 2023-02-17 16:59:03 +01:00 zatwierdzone przez GitHub
rodzic 7b8b50138b
commit 900dc5ee78
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -244,8 +244,9 @@ class update_worker(threading.Thread):
process_changedetection_results = True
except content_fetcher.checksumFromPreviousCheckWasTheSame as e:
# Yes fine, so nothing todo
pass
# Yes fine, so nothing todo, don't continue to process.
process_changedetection_results = False
changed_detected = False
except content_fetcher.BrowserStepsStepTimout as e: