From d246ba7c169a6b29fd50abc4199270daab5b63b4 Mon Sep 17 00:00:00 2001 From: Ryan McGuire Date: Fri, 23 Jan 2026 22:12:44 -0500 Subject: [PATCH] stop hijacking / --- pkg/srv/http/http.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/srv/http/http.go b/pkg/srv/http/http.go index 4db9e45..05f434d 100644 --- a/pkg/srv/http/http.go +++ b/pkg/srv/http/http.go @@ -44,7 +44,6 @@ func prepHTTPServer(opts *opts.AppHTTP) *http.Server { healthChecks := handleHealthCheckFunc(opts.Ctx, opts.HealthChecks...) mux.HandleFunc("/health", healthChecks) - mux.HandleFunc("/", healthChecks) for _, f := range opts.Funcs { mux.HandleFunc(f.Path, f.HandlerFunc)