Skip to content

Commit

Permalink
Merge pull request kubernetes#20773 from justinsb/fix/e2e_pods_to_be_…
Browse files Browse the repository at this point in the history
…ready_format

Auto commit by PR queue bot
  • Loading branch information
k8s-merge-robot committed Feb 8, 2016
2 parents 0ab0929 + 051ff6a commit 14e2c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ func (j *ServiceTestJig) waitForPodsCreated(namespace string, replicas int) ([]s
func (j *ServiceTestJig) waitForPodsReady(namespace string, pods []string) error {
timeout := 2 * time.Minute
if !checkPodsRunningReady(j.Client, namespace, pods, timeout) {
return fmt.Errorf("Timeout waiting for %d pods to be ready")
return fmt.Errorf("Timeout waiting for %d pods to be ready", len(pods))
}
return nil
}
Expand Down

0 comments on commit 14e2c2b

Please sign in to comment.