Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newETCD3Check (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		timeout = c.HealthcheckTimeout
    	}
    	return newETCD3Check(c, timeout, stopCh)
    }
    
    func newETCD3ReadyCheck(c storagebackend.Config, stopCh <-chan struct{}) (func() error, error) {
    	timeout := storagebackend.DefaultReadinessTimeout
    	if c.ReadycheckTimeout != time.Duration(0) {
    		timeout = c.ReadycheckTimeout
    	}
    	return newETCD3Check(c, timeout, stopCh)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top