From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Tue, 29 Aug 2023 01:26:22 +0000 (-0700) Subject: Fixes an erroneous raise that prevented the retry logic from going X-Git-Tag: v1.17.3~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4300733d0cb81eaabcef6dfa4244d79c8342a071;p=thirdparty%2Fpaperless-ngx.git Fixes an erroneous raise that prevented the retry logic from going --- diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py index 3adf29cc8c..208383b15e 100644 --- a/src/paperless_mail/tests/test_parsers_live.py +++ b/src/paperless_mail/tests/test_parsers_live.py @@ -106,7 +106,6 @@ class TestParserLive(FileSystemAssertsMixin, BaseMailParserTestCase): succeeded = True except httpx.HTTPError as e: - raise # Retry on HTTP errors print(f"{e} during try #{retry_count}", flush=True)