Browse Source

Merge pull request #10793 from jingyih/automated-cherry-pick-of-#10788-origin-release-3.3

Automated cherry pick of #10788 on release-3.3
Gyuho Lee 6 years ago
parent
commit
5832014353
1 changed files with 1 additions and 1 deletions
  1. 1 1
      etcdctl/ctlv3/command/printer_simple.go

+ 1 - 1
etcdctl/ctlv3/command/printer_simple.go

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