Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsPendingReplication (0.07 sec)

  1. internal/bucket/lifecycle/evaluator.go

    func (e *Evaluator) WithReplicationConfig(rcfg *replication.Config) *Evaluator {
    	e.replCfg = rcfg
    	return e
    }
    
    // IsPendingReplication checks if the object is pending replication.
    func (e *Evaluator) IsPendingReplication(obj ObjectOpts) bool {
    	if e.replCfg == nil {
    		return false
    	}
    	if e.replCfg.HasActiveRules(obj.Name, true) && !obj.VersionPurgeStatus.Empty() {
    		return true
    	}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Apr 08 15:41:24 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top