From 95bb951b60126cb3492deae0de39cee1e7148019 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 3 Jul 2026 14:28:39 +0000 Subject: [PATCH] =?UTF-8?q?Abri=20log=5Fjob=20raises=20a=20retriable=20tra?= =?UTF-8?q?nsport=20error=20when=20the=20relay=20is=20unreachable=20?= =?UTF-8?q?=F0=9F=9F=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- infrastructure/abri/abri_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/abri/abri_client.py b/infrastructure/abri/abri_client.py index 9731431e2..9d69efd86 100644 --- a/infrastructure/abri/abri_client.py +++ b/infrastructure/abri/abri_client.py @@ -43,7 +43,7 @@ class AbriClient: try: response = self._session.post(self._config.endpoint_url, data=body) response.raise_for_status() - except requests.HTTPError as error: + except requests.RequestException as error: raise AbriTransportError(str(error)) from error root = ET.fromstring(response.content) if root.tag == "response":