mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
Abri log_job raises a retriable transport error when the relay is unreachable 🟩
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
6b9f5a0140
commit
95bb951b60
1 changed files with 1 additions and 1 deletions
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue