Skip to content

Commit a699ada

Browse files
committed
Run go fmt main.go
Signed-off-by: Richard Hartmann <[email protected]>
1 parent bd50d4c commit a699ada

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ func main() {
353353
http.HandleFunc(path.Join(*routePrefix, "debug/pprof/"), pprof.Index)
354354
http.HandleFunc(path.Join(*routePrefix, "debug/pprof/heap"), pprof.Handler("heap").ServeHTTP)
355355
// Endpoint to respond to health checks
356-
http.HandleFunc(path.Join(*routePrefix,"/-/healthy"), func(w http.ResponseWriter, r *http.Request) {
356+
http.HandleFunc(path.Join(*routePrefix, "/-/healthy"), func(w http.ResponseWriter, r *http.Request) {
357357
w.WriteHeader(http.StatusOK)
358358
w.Write([]byte("Healthy"))
359359
})

0 commit comments

Comments
 (0)