Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getHealSequence (0.39 sec)

  1. cmd/admin-heal-ops.go

    		if healSeq.clientToken == token {
    			return healSeq, true
    		}
    	}
    	return nil, false
    }
    
    // getHealSequence - Retrieve a heal sequence by path. The second
    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequence(path string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    	h, exists = ahs.healSeqMap[path]
    	return h, exists
    }
    
    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