File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
)
11
11
12
12
func waitForEndpointsAvailable (oc * exutil.CLI , serviceName string ) error {
13
- return wait .Poll (200 * time .Millisecond , 2 * time .Minute , func () (bool , error ) {
13
+ return wait .Poll (200 * time .Millisecond , 3 * time .Minute , func () (bool , error ) {
14
14
ep , err := oc .KubeClient ().Core ().Endpoints (oc .Namespace ()).Get (serviceName )
15
15
// Tolerate NotFound b/c it could take a moment for the endpoints to be created
16
16
if errors .TolerateNotFoundError (err ) != nil {
@@ -22,7 +22,7 @@ func waitForEndpointsAvailable(oc *exutil.CLI, serviceName string) error {
22
22
}
23
23
24
24
func waitForNoPodsAvailable (oc * exutil.CLI ) error {
25
- return wait .Poll (200 * time .Millisecond , 2 * time .Minute , func () (bool , error ) {
25
+ return wait .Poll (200 * time .Millisecond , 3 * time .Minute , func () (bool , error ) {
26
26
//ep, err := oc.KubeClient().Core().Endpoints(oc.Namespace()).Get(serviceName)
27
27
pods , err := oc .KubeClient ().Core ().Pods (oc .Namespace ()).List (kapi.ListOptions {})
28
28
if err != nil {
You can’t perform that action at this time.
0 commit comments