Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for siteStatus (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/site-replication.go

    	if peer.DeploymentID == globalDeploymentID() {
    		return res, errSRResyncToSelf
    	}
    	if _, ok := c.state.Peers[peer.DeploymentID]; !ok {
    		return res, errSRPeerNotFound
    	}
    	rs, err := globalSiteResyncMetrics.siteStatus(ctx, objAPI, peer.DeploymentID)
    	if err != nil {
    		return res, err
    	}
    	if rs.Status == ResyncStarted {
    		return res, errSRResyncStarted
    	}
    	var buckets []BucketInfo
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 184.8K bytes
    - Click Count (1)
  2. cmd/notification.go

    		if nErr.Err != nil {
    			peersLogOnceIf(logger.SetReqInfo(ctx, reqInfo), nErr.Err, nErr.Host.String())
    		}
    	}
    	siteStats = append(siteStats, globalReplicationStats.Load().getSRMetricsForNode())
    	return siteStats
    }
    
    // ReloadPoolMeta reloads on disk updates on pool metadata
    func (sys *NotificationSys) ReloadPoolMeta(ctx context.Context) {
    	ng := WithNPeers(len(sys.peerClients))
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 46K bytes
    - Click Count (0)
Back to Top