From 802af99c39dd2c3413fed31f50551f031feb28a9 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Mon, 3 Feb 2025 13:28:46 -0300 Subject: [PATCH] Add one more error to failable --- skynet/dgpu/network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/skynet/dgpu/network.py b/skynet/dgpu/network.py index 970db04..55fc786 100755 --- a/skynet/dgpu/network.py +++ b/skynet/dgpu/network.py @@ -34,6 +34,7 @@ async def failable(fn: partial, ret_fail=None): OSError, json.JSONDecodeError, anyio.BrokenResourceError, + httpx.ConnectError, httpx.ConnectTimeout, httpx.ReadError, httpx.ReadTimeout,