Commit e6300700 authored by Andy Goldstein's avatar Andy Goldstein

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.
parent 9db45590
......@@ -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)
}()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment