Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tgtsMap (0.05 sec)

  1. internal/bucket/replication/replication.go

    	var arns []string
    
    	tgtsMap := make(map[string]struct{})
    	rules := c.FilterActionableRules(obj)
    	for _, rule := range rules {
    		if rule.Status == Disabled {
    			continue
    		}
    		if c.RoleArn != "" {
    			arns = append(arns, c.RoleArn) // use legacy RoleArn if present
    			return arns
    		}
    		if _, ok := tgtsMap[rule.Destination.ARN]; !ok {
    			tgtsMap[rule.Destination.ARN] = struct{}{}
    		}
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    					continue
    				}
    				tgtsMap := make(map[string]madmin.TgtDiffInfo)
    				for arn, st := range roi.TargetStatuses {
    					if opts.ARN == "" || opts.ARN == arn {
    						if !opts.Verbose && (st == replication.Completed || st == replication.Replica) {
    							continue
    						}
    						tgtsMap[arn] = madmin.TgtDiffInfo{
    							ReplicationStatus: st.String(),
    						}
    					}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
Back to top