Skip to content

Commit

Permalink
Merge pull request #10788 from jingyih/add_missing_newline_EndpointHe…
Browse files Browse the repository at this point in the history
…alth

ctlv3: add newline in EndpointHealth output
  • Loading branch information
gyuho authored Jun 5, 2019
2 parents 5042c27 + 17e10fe commit ea45cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etcdctl/ctlv3/command/printer_simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (s *simplePrinter) EndpointHealth(hs []epHealth) {
if h.Error == "" {
fmt.Fprintf(os.Stderr, "%s is healthy: successfully committed proposal: took = %v\n", h.Ep, h.Took)
} else {
fmt.Fprintf(os.Stderr, "%s is unhealthy: failed to commit proposal: %v", h.Ep, h.Error)
fmt.Fprintf(os.Stderr, "%s is unhealthy: failed to commit proposal: %v\n", h.Ep, h.Error)
}
}
}
Expand Down

0 comments on commit ea45cd6

Please sign in to comment.