- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for countFailed (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/admin-heal-ops.go
// Make a copy before returning the value retMap := make(map[madmin.HealItemType]int64, len(h.healFailedItemsMap)) maps.Copy(retMap, h.healFailedItemsMap) return retMap } func (h *healSequence) countFailed(healType madmin.HealItemType) { h.mutex.Lock() defer h.mutex.Unlock() h.healFailedItemsMap[healType]++ h.lastHealActivity = UTCNow() }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 25.4K bytes - Click Count (0) -
cmd/background-heal-ops.go
// when respCh is not set caller is not waiting but we // update the relevant metrics for them if bgSeq != nil { if err == nil { bgSeq.countHealed(res.Type) } else { bgSeq.countFailed(res.Type) } } case <-ctx.Done(): return } } } func newHealRoutine() *healRoutine { workers := runtime.GOMAXPROCS(0) / 2Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 4.6K bytes - Click Count (0)