From d619562f004db12c35ae3ef7356a771ca4889bce Mon Sep 17 00:00:00 2001 From: yusing Date: Sun, 15 Feb 2026 14:33:43 +0800 Subject: [PATCH] refactor(health): remove incorrect field comment --- internal/types/health.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/types/health.go b/internal/types/health.go index 4134eaa2..69c5f6a0 100644 --- a/internal/types/health.go +++ b/internal/types/health.go @@ -77,8 +77,8 @@ type ( HealthInfoWithoutDetail struct { Status HealthStatus `json:"status" swaggertype:"string" enums:"healthy,unhealthy,napping,starting,error,unknown"` - Uptime time.Duration `json:"uptime" swaggertype:"number"` // uptime in milliseconds - Latency time.Duration `json:"latency" swaggertype:"number"` // latency in microseconds + Uptime time.Duration `json:"uptime" swaggertype:"number"` + Latency time.Duration `json:"latency" swaggertype:"number"` } // @name HealthInfoWithoutDetail HealthInfo struct {