Browse Source

增加rpc platform Service超时时间

loki.wu 2 years ago
parent
commit
27daa671ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/rpc.dart

+ 1 - 1
lib/rpc.dart

@@ -48,7 +48,7 @@ class JsonRpcProxy {
     if (_platformService == null)
       _platformService = PlatformService(
         "http://$platformHost",
-        timeout: 10,
+        timeout: 15,
       );
     return _platformService!;
   }