From 57fc5e1380fe523a4b250a5ebc00575b21a37be2 Mon Sep 17 00:00:00 2001 From: Minhan Xia Date: Tue, 1 Mar 2016 10:03:13 -0800 Subject: [PATCH] bump wait timeout for nettest container --- test/images/network-tester/webserver.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/images/network-tester/webserver.go b/test/images/network-tester/webserver.go index a7a5eb27145..9c7c6011513 100644 --- a/test/images/network-tester/webserver.go +++ b/test/images/network-tester/webserver.go @@ -214,7 +214,7 @@ func main() { // Find all sibling pods in the service and post to their /write handler. func contactOthers(state *State) { - const waitTimeout = 2 * time.Minute + const waitTimeout = 5 * time.Minute defer state.doneContactingPeers() client, err := client.NewInCluster() if err != nil { @@ -232,7 +232,7 @@ func contactOthers(state *State) { if eps.Len() >= *peerCount { break } - state.Logf("%v/%v has %v endpoints, which is less than %v as expected. Waiting for all endpoints to come up.", *namespace, *service, len(eps), *peerCount) + state.Logf("%v/%v has %v endpoints (%v), which is less than %v as expected. Waiting for all endpoints to come up.", *namespace, *service, len(eps), eps.List(), *peerCount) } // Do this repeatedly, in case there's some propagation delay with getting