From 56b69f97b3f9e7c990f5f1fa265ec60787fcdf1f Mon Sep 17 00:00:00 2001 From: goodboy Date: Wed, 21 Jan 2026 20:05:07 -0500 Subject: [PATCH] ib: up API timeout default for remote host conns --- piker/brokers/ib/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/brokers/ib/api.py b/piker/brokers/ib/api.py index 5bcc7336..4a63a0f1 100644 --- a/piker/brokers/ib/api.py +++ b/piker/brokers/ib/api.py @@ -1187,7 +1187,7 @@ async def load_aio_clients( # the API TCP in `ib_insync` connection can be flaky af so instead # retry a few times to get the client going.. connect_retries: int = 3, - connect_timeout: float = 10, + connect_timeout: float = 30, # in case a remote-host disconnect_on_exit: bool = True, ) -> dict[str, Client]: