From 253838ca8eff74afd73e9e1e6c411ad492ec986d Mon Sep 17 00:00:00 2001 From: cody Date: Wed, 11 Sep 2024 14:06:03 +0800 Subject: [PATCH] feat: ignore config show path. --- core/corehttp/corehttp_interceptor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/corehttp/corehttp_interceptor.go b/core/corehttp/corehttp_interceptor.go index 8e8090aa8..472f80793 100644 --- a/core/corehttp/corehttp_interceptor.go +++ b/core/corehttp/corehttp_interceptor.go @@ -109,6 +109,7 @@ func filterUrl(r *http.Request) bool { } urls := map[string]bool{ APIPath + "/id": true, + APIPath + "/config/show": true, APIPath + "/dashboard/check": true, APIPath + "/dashboard/set": true, APIPath + "/dashboard/login": true,