ctlv3: add missing newline in EndpointHealth

To make the output consistent with the output before #9540.
release-3.1^2
Jingyi Hu 2019-06-04 15:52:29 -07:00
parent 317ff58478
commit f330a4859f
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,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)
}
}
}