From e8bd911a2ccf71f04b2935b3c78a6424acdd26d0 Mon Sep 17 00:00:00 2001 From: ssongliu Date: Fri, 29 May 2026 16:25:31 +0800 Subject: [PATCH] fix: fix terminal connection failure for overview nodes --- core/init/router/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/init/router/proxy.go b/core/init/router/proxy.go index 0fd7f6fb46b0..ceeb1d5bf580 100644 --- a/core/init/router/proxy.go +++ b/core/init/router/proxy.go @@ -45,7 +45,7 @@ func Proxy() gin.HandlerFunc { return } - if reqPath == "/api/v2/hosts/terminal" && (currentNode == "local" || len(currentNode) == 0) { + if reqPath == "/api/v2/hosts/terminal/local" && (currentNode == "local" || len(currentNode) == 0) { proxyLocalAgent(c) return }