We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6b2b31 commit 306a8d3Copy full SHA for 306a8d3
1 file changed
internal/controller/health_controller.go
@@ -13,8 +13,8 @@ func NewHealthController(router *gin.RouterGroup) *HealthController {
13
}
14
15
func (hc *HealthController) SetupRoutes() {
16
- hc.router.GET("/health", hc.health)
17
- hc.router.HEAD("/health", hc.health)
+ hc.router.GET("/healthz", hc.health)
+ hc.router.HEAD("/healthz", hc.health)
18
19
20
func (hc *HealthController) health(c *gin.Context) {
0 commit comments