Commit 0c091902 authored by Daniel Smith's avatar Daniel Smith Committed by GitHub

Merge pull request #27411 from nikhiljindal/timeout

federation-apiserver test: Increasing timeout for clusters to be ready
parents 571c94a8 7f7842e6
......@@ -105,7 +105,7 @@ var _ = framework.KubeDescribe("Federation apiserver [Feature:Federation]", func
// Verify that the cluster is marked ready.
func isReady(clusterName string, clientset *federation_internalclientset.Clientset) error {
return wait.PollImmediate(time.Second, wait.ForeverTestTimeout, func() (bool, error) {
return wait.PollImmediate(time.Second, 5*time.Minute, func() (bool, error) {
c, err := clientset.Federation().Clusters().Get(clusterName)
if err != nil {
return false, err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment