From d72f7af42f6d8453f28158f024ba2ec3c5038321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Thu, 13 Oct 2022 07:20:57 +0200 Subject: [PATCH] =?UTF-8?q?Network=20error=20retry=20time:=205=20minutes?= =?UTF-8?q?=20=E2=86=92=2015=20minutes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zyte_api/aio/retry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zyte_api/aio/retry.py b/zyte_api/aio/retry.py index 8777a52..17eb45b 100644 --- a/zyte_api/aio/retry.py +++ b/zyte_api/aio/retry.py @@ -87,7 +87,7 @@ class RetryFactory: ) temporary_download_error_wait = network_error_wait throttling_stop = stop_never - network_error_stop = stop_after_delay(5 * 60) + network_error_stop = stop_after_delay(15 * 60) temporary_download_error_stop = stop_after_attempt(4) def wait(self, retry_state: RetryCallState) -> float: