Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RemoteClusterTimeout (0.21 sec)

  1. pkg/kube/multicluster/cluster.go

    func (c *Cluster) Run(mesh mesh.Watcher, handlers []handler, action ACTION) {
    	if features.RemoteClusterTimeout > 0 {
    		time.AfterFunc(features.RemoteClusterTimeout, func() {
    			if !c.initialSync.Load() {
    				log.Errorf("remote cluster %s failed to sync after %v", c.ID, features.RemoteClusterTimeout)
    				timeouts.With(clusterLabel.Value(string(c.ID))).Increment()
    			}
    			c.initialSyncTimeout.Store(true)
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top