aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 76460f3..0acd700 100644
--- a/main.go
+++ b/main.go
@@ -36,12 +36,12 @@ func killMe(w http.ResponseWriter, r *http.Request) {
func readinessCheck(w http.ResponseWriter, r *http.Request) {
w.Header().Set("responding-pod", hostname)
- http.Error(w, "", ReadyValue)
+ http.Error(w, "Responding with ReadyValue", ReadyValue)
}
func livenessCheck(w http.ResponseWriter, r *http.Request) {
w.Header().Set("responding-pod", hostname)
- http.Error(w, "", LiveValue)
+ http.Error(w, "Responding with LiveValue", LiveValue)
}
func rootHandler(w http.ResponseWriter, r *http.Request) {