mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Merge pull request #29118 from xiangpengzhao/fix_reversed_var_order
Automatic merge from submit-queue Fix reversed order of variables The order of variables in log is reversed.
This commit is contained in:
		@@ -1603,7 +1603,7 @@ func (dm *DockerManager) applyOOMScoreAdjIfNeeded(pod *api.Pod, container *api.C
 | 
			
		||||
	// If current api version is older than OOMScoreAdj requested, use the old way.
 | 
			
		||||
	if result < 0 {
 | 
			
		||||
		if err := dm.applyOOMScoreAdj(pod, container, containerInfo); err != nil {
 | 
			
		||||
			return fmt.Errorf("Failed to apply oom-score-adj to container %q- %v", err, containerInfo.Name)
 | 
			
		||||
			return fmt.Errorf("Failed to apply oom-score-adj to container %q- %v", containerInfo.Name, err)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user