Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Hevery (0.13 sec)

  1. cmd/admin-heal-ops.go

    		return true
    	default:
    		return false
    	}
    }
    
    // check if the heal sequence has ended
    func (h *healSequence) hasEnded() bool {
    	h.mutex.RLock()
    	defer h.mutex.RUnlock()
    	// background heal never ends
    	if h.clientToken == bgHealingUUID {
    		return false
    	}
    	return !h.endTime.IsZero()
    }
    
    // stops the heal sequence - safe to call multiple times.
    func (h *healSequence) stop() {
    	h.cancelCtx()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 25.1K bytes
    - Viewed (1)
Back to top