Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cntReplicated (0.25 sec)

  1. cmd/site-replication.go

    // of replication rules with all replication features enabled.
    func isBktReplCfgReplicated(total int, cfgs []*sreplication.Config) bool {
    	cntReplicated := 0
    	for _, c := range cfgs {
    		if c == nil {
    			continue
    		}
    		cntReplicated++
    	}
    
    	if cntReplicated > 0 && cntReplicated != total {
    		return false
    	}
    	// check if policies match between sites
    	var prev *sreplication.Config
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
Back to top