From: Oscar J Rodriguez Date: Tue, 9 May 2023 07:06:27 +0000 (-0700) Subject: Merge branch 'master' of github.com:josuer08/vscpweb X-Git-Url: https://git.josue.xyz/?a=commitdiff_plain;h=cf04f9e6e2986de1e437b7d43cbb920231a188dd;hp=4d4b5044a708dcc270c7ed3d76e0152b171fb912;p=VSCPweb%2F.git Merge branch 'master' of github.com:josuer08/vscpweb normal merger because of small change --- diff --git a/handlers/health/healthHandlers.go b/handlers/health/healthHandlers.go index 7e054da..81d0525 100644 --- a/handlers/health/healthHandlers.go +++ b/handlers/health/healthHandlers.go @@ -17,5 +17,6 @@ import ( // the special agent that each of them will already have installed in order to // connect to the cluster. func MasterHealthHandler(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf("Ëverything should be okay my boi") + w.WriteHeader(http.StatusOK) + fmt.Fprintf(w, "Ëverything should be okay my boi") }