Commit 6c3ed90b authored by Robert Bailey's avatar Robert Bailey

Merge pull request #24804 from ncdc/fix-node-e2e-failure-output

Fix node e2e startServer failure output
parents 7df41be4 e6300700
......@@ -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