From e4658a8f09f4f0b32130906ebfc1753aaf64bdec Mon Sep 17 00:00:00 2001 From: yusing Date: Tue, 30 Dec 2025 21:59:43 +0800 Subject: [PATCH] fix(route): update health monitor initialization to use implementation instance --- internal/route/route.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/route/route.go b/internal/route/route.go index 420b7c9f..425a070d 100644 --- a/internal/route/route.go +++ b/internal/route/route.go @@ -406,7 +406,7 @@ func (r *Route) start(parent task.Parent) gperr.Error { routes.Excluded.Del(r.impl) }) if r.UseHealthCheck() { - r.HealthMon = monitor.NewMonitor(r) + r.HealthMon = monitor.NewMonitor(r.impl) err := r.HealthMon.Start(r.task) return err }