Compare commits

...

2 Commits

Author SHA1 Message Date
d246ba7c16 stop hijacking / 2026-01-23 22:12:44 -05:00
04a626df60 update CHANGELOG 2026-01-23 21:00:48 -05:00
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
# v0.17.0
* feat: Add CORS support
# v0.12.1
* feat: Implement custom OpenTelemetry span name formatting for HTTP requests.
* refactor: Streamline OpenTelemetry handler integration by removing custom wrapper.

View File

@@ -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)