Merge pull request #6920 from a-robinson/e2e

Fix a broken fmt.Errorf in the services e2e test
pull/6/head
Quinton Hoole 2015-04-16 10:39:58 -07:00
commit 57a52d40ec
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ func waitForPublicIPs(c *client.Client, serviceName, namespace string) (*api.Ser
}
Logf("Waiting for service %s in namespace %s to have a public IP (%v)", serviceName, namespace, time.Since(start))
}
return service, fmt.Errorf("service %s in namespace %s to have a public IP after %.2f seconds", nil, serviceName, namespace, podStartTimeout.Seconds())
return service, fmt.Errorf("service %s in namespace %s doesn't have a public IP after %.2f seconds", serviceName, namespace, podStartTimeout.Seconds())
}
func validateUniqueOrFail(s []string) {