From caf2cc5a5b7371c7e34b71217cdd6c6e4df14bb6 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]: