From b74bcb1ccd7e3a9d8e102ec1b435dc20d053feb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Thu, 22 Jan 2026 19:36:28 +0100 Subject: [PATCH] timeout of one hour in response for jrpc connection. --- src/testium/interpreter/utils/jrpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testium/interpreter/utils/jrpc.py b/src/testium/interpreter/utils/jrpc.py index 11cf297..13c37f3 100644 --- a/src/testium/interpreter/utils/jrpc.py +++ b/src/testium/interpreter/utils/jrpc.py @@ -182,7 +182,7 @@ class JsonRpcConnection: self.conn.sendall(data) # ---------- Outgoing request ---------- - def call(self, method, params=None, timeout=5.0): + def call(self, method, params=None, timeout=3600.0): """Send a request and wait for its response. Args: