From de4ef87491d4a6662f2e11c6a8bdde8e0e98beff Mon Sep 17 00:00:00 2001 From: zhi Date: Fri, 20 Mar 2026 06:42:45 +0000 Subject: [PATCH] refactor(plugin): remove fallback sidecar autostart --- plugin/index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugin/index.ts b/plugin/index.ts index 9dc7e05..ca6ee92 100644 --- a/plugin/index.ts +++ b/plugin/index.ts @@ -162,13 +162,6 @@ export default function register(api: PluginAPI, rawConfig: PluginConfig | Plugi process.on('SIGTERM', stopSidecar); process.on('SIGINT', stopSidecar); - // Start immediately if Gateway is already running - if (api.isRunning?.()) { - startSidecar(); - } else { - setTimeout(() => startSidecar(), 1000); - } - // Register status tool api.registerTool(() => ({ name: 'harborforge_monitor_status',