Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for resyncBeforeDate (0.08 sec)

  1. cmd/bucket-replication-utils.go

    	LastUpdate time.Time `json:"lastUpdated" msg:"lst"`
    	// Resync ID assigned to this reset
    	ResyncID string `json:"resyncID" msg:"id"`
    	// ResyncBeforeDate - resync all objects created prior to this date
    	ResyncBeforeDate time.Time `json:"resyncBeforeDate" msg:"rdt"`
    	// Status of resync operation
    	ResyncStatus ResyncStatusType `json:"resyncStatus" msg:"rst"`
    	// Failed size in bytes
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    		case "id":
    			z.ResyncID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "ResyncID")
    				return
    			}
    		case "rdt":
    			z.ResyncBeforeDate, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "ResyncBeforeDate")
    				return
    			}
    		case "rst":
    			{
    				var zb0002 int
    				zb0002, err = dc.ReadInt()
    				if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			return fmt.Errorf("Resync of bucket %s is already in progress for remote bucket %s", opts.bucket, opts.arn)
    		}
    	}
    
    	status := TargetReplicationResyncStatus{
    		ResyncID:         opts.resyncID,
    		ResyncBeforeDate: opts.resyncBefore,
    		StartTime:        UTCNow(),
    		ResyncStatus:     ResyncPending,
    		Bucket:           opts.bucket,
    	}
    	data.TargetsMap[opts.arn] = status
    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