diff --git a/libs/shared/shared/torngit/github.py b/libs/shared/shared/torngit/github.py index 1f082b4572..116860237c 100644 --- a/libs/shared/shared/torngit/github.py +++ b/libs/shared/shared/torngit/github.py @@ -820,10 +820,10 @@ async def make_http_call( **log_dict, ), ) - except (httpx.TimeoutException, httpx.NetworkError): + except (httpx.TimeoutException, httpx.NetworkError, httpx.RemoteProtocolError): if current_retry < max_number_retries: log.warning( - "GitHub was not able to be reached, retrying", + "GitHub request failed, retrying", extra=dict( current_retry=current_retry, **log_dict,