Merge pull request #31634 from timstclair/gubernator

Automatic merge from submit-queue

Cleanup node failure message

Fix missing newline
This commit is contained in:
Kubernetes Submit Queue 2016-08-30 00:53:15 -07:00 committed by GitHub
commit cca6d7ddd9

View File

@ -272,7 +272,7 @@ func main() {
// Set the exit code if there were failures
if !exitOk {
fmt.Printf("Failure: %d errors encountered.", errCount)
fmt.Printf("Failure: %d errors encountered.\n", errCount)
callGubernator(*gubernator)
os.Exit(1)
}