double ns deletion timeout until we figure out what is causing slowness

This commit is contained in:
Mike Danese 2017-06-13 18:20:29 -07:00
parent 85832892b1
commit eb32d6b5d3

View File

@ -52,7 +52,9 @@ import (
const ( const (
maxKubectlExecRetries = 5 maxKubectlExecRetries = 5
DefaultNamespaceDeletionTimeout = 5 * time.Minute // TODO(mikedanese): reset this to 5 minutes once #47135 is resolved.
// ref https://github.com/kubernetes/kubernetes/issues/47135
DefaultNamespaceDeletionTimeout = 10 * time.Minute
) )
// Framework supports common operations used by e2e tests; it will keep a client & a namespace for you. // Framework supports common operations used by e2e tests; it will keep a client & a namespace for you.