skip update

This commit is contained in:
Marco Pedone 2026-05-26 12:38:41 +02:00
parent 43568aeb36
commit abb9dcfd36

View file

@ -24,7 +24,7 @@ func main() {
e := echo.New()
skipper := func(c *echo.Context) bool {
// Skip health check endpoint
return c.Request().URL.Path == "/health"
return c.Request().URL.Path == "/health" || c.Request().URL.Path == "/"
}
e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{