From e1775e6f1ecd6a765817cd9562614db20f957e95 Mon Sep 17 00:00:00 2001 From: ut001652 Date: Thu, 7 Nov 2024 19:53:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=B6=E9=95=BFrpc=E8=B6=85=E6=97=B6?= =?UTF-8?q?=E5=88=B060=E7=A7=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/remotectl/_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remotectl/_base.py b/src/remotectl/_base.py index 3590f8d6..7c12c71c 100644 --- a/src/remotectl/_base.py +++ b/src/remotectl/_base.py @@ -163,7 +163,7 @@ def remote_client(ip, port): except ImportError: raise ImportError("Please install zerorpc") - c = zerorpc.Client(timeout=20, heartbeat=None) + c = zerorpc.Client(timeout=60, heartbeat=None) try: c.connect(f"tcp://{ip}:{port}") return c