Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ResyncStatusType (0.07 sec)

  1. cmd/bucket-replication.go

    		rs.workerCh <- struct{}{}
    	}
    	return &rs
    }
    
    // mark status of replication resync on remote target for the bucket
    func (s *replicationResyncer) markStatus(status ResyncStatusType, opts resyncOpts, objAPI ObjectLayer) {
    	s.Lock()
    	defer s.Unlock()
    
    	m := s.statusMap[opts.bucket]
    	st := m.TargetsMap[opts.arn]
    	st.LastUpdate = UTCNow()
    	st.ResyncStatus = 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)
  2. cmd/site-replication.go

    	now := UTCNow()
    	s := SiteResyncStatus{
    		Version:        siteResyncMetaVersion,
    		Status:         ResyncStarted,
    		DeplID:         dID,
    		TotBuckets:     len(buckets),
    		BucketStatuses: make(map[string]ResyncStatusType),
    	}
    	for _, bi := range buckets {
    		s.BucketStatuses[bi.Name] = ResyncPending
    	}
    	s.ResyncID = mustGetUUID()
    	s.StartTime = now
    	s.LastUpdate = now
    	return s
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top