From b1953d86c2bd0f426e20df8105b13e3be7f79c94 Mon Sep 17 00:00:00 2001 From: yusing Date: Sat, 17 Jan 2026 16:07:40 +0800 Subject: [PATCH] fix(idlewatcher): remove duplicated w.readyNotifyCh notification --- internal/idlewatcher/watcher.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/idlewatcher/watcher.go b/internal/idlewatcher/watcher.go index 2515806c..e79ccc6f 100644 --- a/internal/idlewatcher/watcher.go +++ b/internal/idlewatcher/watcher.go @@ -612,10 +612,6 @@ func (w *Watcher) watchUntilDestroy() (returnCause error) { if ready { // Container is now ready, notify waiting handlers w.healthTicker.Stop() - select { - case w.readyNotifyCh <- struct{}{}: - default: // channel full, notification already pending - } w.resetIdleTimer() } // If not ready yet, keep checking on next tick