fix(rpc_base): timeout run_rpc 3s

This commit is contained in:
2025-04-03 16:09:33 +02:00
parent 75b24467de
commit 8558b46114
+1 -1
View File
@@ -163,7 +163,7 @@ class RPCBase:
parent = parent._parent
return parent
def _run_rpc(self, method, *args, wait_for_rpc_response=True, timeout=300, **kwargs) -> Any:
def _run_rpc(self, method, *args, wait_for_rpc_response=True, timeout=3, **kwargs) -> Any:
"""
Run the RPC call.