From 04a9eb553ae271f62f5daf27fa481172ed192f20 Mon Sep 17 00:00:00 2001 From: Serguei Bezverkhi Date: Thu, 20 Dec 2018 17:39:56 -0500 Subject: [PATCH] Fix typo Signed-off-by: Serguei Bezverkhi --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 76e7cc24..56c75002 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -95,7 +95,7 @@ func main() { flag.Parse() addr := net.JoinHostPort("0.0.0.0", *healthzPort) - http.HandleFunc("/healthz", chekcHealth) + http.HandleFunc("/healthz", checkHealth) glog.Infof("Serving requests to /healthz on: %s", addr) err := http.ListenAndServe(addr, nil) if err != nil {