summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorWindrow <565101079@qq.com>2023-11-17 15:33:20 +0800
committerWindrow <565101079@qq.com>2023-11-17 15:33:20 +0800
commitf89882b03244b292d3f5b0ac6a0a60d70ffe86ad (patch)
tree98af01f70e3181b2f65639aa34e77e5d9a54063e /pkg
parentFix wrong verbs. (diff)
downloadkubeedge-f89882b03244b292d3f5b0ac6a0a60d70ffe86ad.tar.gz
Modification according to comment.
Signed-off-by: Windrow <565101079@qq.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/util/pass-through/pass_through.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/util/pass-through/pass_through.go b/pkg/util/pass-through/pass_through.go
index c2e2dbd1b..2ce465afa 100644
--- a/pkg/util/pass-through/pass_through.go
+++ b/pkg/util/pass-through/pass_through.go
@@ -4,7 +4,7 @@ type passRequest string
const (
versionRequest passRequest = "/version::get"
- healthRequest passRequest = "/healthz::get"
+ healthRequest passRequest = "/healthz::get" // deprecated: TODO remove this once it is gone
liveRequest passRequest = "/livez::get"
readyRequest passRequest = "/readyz::get"
)