Skip to content

Commit

Permalink
Fix a typo in wait_for_pods.go
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsz committed Feb 11, 2020
1 parent e2316e0 commit ca851b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clusterloader2/pkg/measurement/util/wait_for_pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func WaitForPods(clientSet clientset.Interface, stopCh <-chan struct{}, options
}
addedPods := diff.AddedPods()
if scaling != up && len(addedPods) > 0 {
klog.Errorf("%s: %s: %d pods appeared: %v", options.CallerName, options.Selector.String(), len(deletedPods), strings.Join(deletedPods, ", "))
klog.Errorf("%s: %s: %d pods appeared: %v", options.CallerName, options.Selector.String(), len(addedPods), strings.Join(addedPods, ", "))
}
if options.EnableLogging {
klog.Infof("%s: %s: %s", options.CallerName, options.Selector.String(), podsStatus.String())
Expand Down

0 comments on commit ca851b1

Please sign in to comment.