Fix node e2e startServer failure output

Correct the display of the output when e.g. starting the kubelet fails in the node e2e tests. This
change makes it display a string instead of an array of decimal values.
pull/6/head
Andy Goldstein 2016-04-26 10:26:40 -04:00
parent 9db45590cf
commit e630070078
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ func (es *e2eService) startServer(cmd *healthCheckCommand) error {
go func() {
err := cmd.Run()
if err != nil {
cmdErrorChan <- fmt.Errorf("%s Failed with error \"%v\". Command output:\n%v", cmd, err, *cmd.OutputBuffer)
cmdErrorChan <- fmt.Errorf("%s Failed with error \"%v\". Command output:\n%s", cmd, err, cmd.OutputBuffer)
}
close(cmdErrorChan)
}()