Merge pull request #8742 from tstromberg/longer-dns-retry

TestNetworkPlugins/DNS: Wait longer for DNS to become available
pull/8745/head
Thomas Strömberg 2020-07-16 20:00:27 -07:00 committed by GitHub
commit 35f94c4fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func TestNetworkPlugins(t *testing.T) {
}
// If the coredns process was stable, this retry wouldn't be necessary.
if err := retry.Expo(nslookup, 1*time.Second, Minutes(2)); err != nil {
if err := retry.Expo(nslookup, 1*time.Second, Minutes(6)); err != nil {
t.Errorf("failed to do nslookup on kubernetes.default: %v", err)
}