From ba62e3f4f4a182606569e80786f60f6b6ab7a6bc Mon Sep 17 00:00:00 2001 From: Dorian Date: Tue, 31 Mar 2026 03:21:16 +0100 Subject: [PATCH] fix: increase package start/stop/uninstall RPC timeouts Uninstall was timing out at 15s default while podman stop takes 30-600s. Now: uninstall 120s, stop 120s, restart 120s, start 60s. Co-Authored-By: Claude Opus 4.6 (1M context) --- neode-ui/src/api/rpc-client.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/neode-ui/src/api/rpc-client.ts b/neode-ui/src/api/rpc-client.ts index 770e9a20..4a2e5391 100644 --- a/neode-ui/src/api/rpc-client.ts +++ b/neode-ui/src/api/rpc-client.ts @@ -517,6 +517,7 @@ class RPCClient { return this.call({ method: 'package.uninstall', params: { id }, + timeout: 120000, }) } @@ -524,6 +525,7 @@ class RPCClient { return this.call({ method: 'package.start', params: { id }, + timeout: 60000, }) } @@ -531,6 +533,7 @@ class RPCClient { return this.call({ method: 'package.stop', params: { id }, + timeout: 120000, }) } @@ -538,6 +541,7 @@ class RPCClient { return this.call({ method: 'package.restart', params: { id }, + timeout: 120000, }) }