diff options
| author | Windrow <565101079@qq.com> | 2023-11-17 15:33:20 +0800 |
|---|---|---|
| committer | Windrow <565101079@qq.com> | 2023-11-17 15:33:20 +0800 |
| commit | f89882b03244b292d3f5b0ac6a0a60d70ffe86ad (patch) | |
| tree | 98af01f70e3181b2f65639aa34e77e5d9a54063e /pkg | |
| parent | Fix wrong verbs. (diff) | |
| download | kubeedge-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.go | 2 |
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" ) |
