Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Dsc (0.01 sec)

  1. cmd/object-handlers.go

    			dsc := mustReplicate(ctx, bucket, object, oi.getMustReplicateOptions(replication.MetadataReplicationType, opts))
    			if dsc.ReplicateAny() {
    				oi.UserDefined[ReservedMetadataPrefixLower+ReplicationTimestamp] = UTCNow().Format(time.RFC3339Nano)
    				oi.UserDefined[ReservedMetadataPrefixLower+ReplicationStatus] = dsc.PendingStatus()
    			}
    			return dsc, nil
    		},
    	}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 120.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	if replStatus == replication.Replica && !mopts.isMetadataReplication() {
    		return dsc
    	}
    
    	if mopts.replicationRequest { // incoming replication request on target cluster
    		return dsc
    	}
    
    	cfg, err := getReplicationConfig(ctx, bucket)
    	if err != nil {
    		replLogOnceIf(ctx, err, bucket)
    		return dsc
    	}
    	if cfg == nil {
    		return dsc
    	}
    
    	opts := replication.ObjectOpts{
    		Name:           object,
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 118.2K bytes
    - Viewed (0)
Back to top