mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Merge pull request #39627 from alejandroEsc/ae/kubelet/log
Automatic merge from submit-queue (batch tested with PRs 39695, 37054, 39627, 39546, 39615) fixed error log that would cause two log lines to run into each other… **What this PR does / why we need it**: Fixed error log that would cause two log lines to run into each other. Logs running into each other can be reproduced by running local-up-cluster.sh on osx. **Release note**: ```NONE ```
This commit is contained in:
		@@ -188,7 +188,7 @@ func (hk *HyperKube) Run(args []string) error {
 | 
				
			|||||||
func (hk *HyperKube) RunToExit(args []string) {
 | 
					func (hk *HyperKube) RunToExit(args []string) {
 | 
				
			||||||
	err := hk.Run(args)
 | 
						err := hk.Run(args)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		fmt.Fprint(os.Stderr, err.Error())
 | 
							fmt.Fprintf(os.Stderr, "Error: %v\n", err.Error())
 | 
				
			||||||
		os.Exit(1)
 | 
							os.Exit(1)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	os.Exit(0)
 | 
						os.Exit(0)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user