diff --git a/src/internal/server/health_handler.go b/src/internal/server/health_handler.go index a5685c7..04f46e4 100644 --- a/src/internal/server/health_handler.go +++ b/src/internal/server/health_handler.go @@ -12,19 +12,13 @@ type HealthResponse struct { } func (s *Server) HealthHandler(c *fiber.Ctx) error { - // Only 404 indicate service as non-healthy + // Only 404 indicate service as not-healthy err := s.GetDatabase().Ping(context.Background()) if err != nil { // fmt.Println("db unavailable", err) return c.SendStatus(http.StatusNotFound) } - err = s.GetLogger().Ping() - if err != nil { - // fmt.Println("logger unavailable", err) - return c.SendStatus(http.StatusNotFound) - } - err = s.GetCache().Ping(context.Background()).Err() if err != nil { // fmt.Println("cache unavailable", err)