From f5c53b1bd8e086d01394125c84e5ea868a650849 Mon Sep 17 00:00:00 2001 From: chrislu Date: Wed, 30 Jul 2025 16:43:14 -0700 Subject: [PATCH] fix reason display --- weed/worker/tasks/erasure_coding/detection.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/worker/tasks/erasure_coding/detection.go b/weed/worker/tasks/erasure_coding/detection.go index 1a2558396..450080a12 100644 --- a/weed/worker/tasks/erasure_coding/detection.go +++ b/weed/worker/tasks/erasure_coding/detection.go @@ -64,9 +64,9 @@ func Detection(metrics []*types.VolumeHealthMetrics, clusterInfo *types.ClusterI Server: metric.Server, Collection: metric.Collection, Priority: types.TaskPriorityLow, // EC is not urgent - Reason: fmt.Sprintf("Volume meets EC criteria: quiet for %.1fs (>%ds), fullness=%.1f%% (>%.1f%%), size=%.1fMB (>100MB)", + Reason: fmt.Sprintf("Volume meets EC criteria: quiet for %.1fs (>%ds), fullness=%.1f%% (>%.1f%%), size=%.1fMB (>%dMB)", metric.Age.Seconds(), ecConfig.QuietForSeconds, metric.FullnessRatio*100, ecConfig.FullnessRatio*100, - float64(metric.Size)/(1024*1024)), + float64(metric.Size)/(1024*1024), ecConfig.MinSizeMB), ScheduleAt: now, } results = append(results, result)