mirror of
				https://github.com/NVIDIA/nvidia-container-toolkit
				synced 2025-06-26 18:18:24 +00:00 
			
		
		
		
	Address singleCaseSwitch errors
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
		
							parent
							
								
									f8870b31be
								
							
						
					
					
						commit
						2f48ab99c3
					
				| @ -146,8 +146,7 @@ func (c *configToml) setFlagToKeyValue(setFlag string) (string, interface{}, err | ||||
| 	if v == nil { | ||||
| 		return key, nil, errInvalidConfigOption | ||||
| 	} | ||||
| 	switch v.(type) { | ||||
| 	case bool: | ||||
| 	if _, ok := v.(bool); ok { | ||||
| 		if len(setParts) == 1 { | ||||
| 			return key, true, nil | ||||
| 		} | ||||
|  | ||||
| @ -38,8 +38,7 @@ func (c *ConfigV1) AddRuntime(name string, path string, setAsDefault bool) error | ||||
| 
 | ||||
| 	config.Set("version", int64(1)) | ||||
| 
 | ||||
| 	switch runc := config.GetPath([]string{"plugins", "cri", "containerd", "runtimes", "runc"}).(type) { | ||||
| 	case *toml.Tree: | ||||
| 	if runc, ok := config.GetPath([]string{"plugins", "cri", "containerd", "runtimes", "runc"}).(*toml.Tree); ok { | ||||
| 		runc, _ = toml.Load(runc.String()) | ||||
| 		config.SetPath([]string{"plugins", "cri", "containerd", "runtimes", name}, runc) | ||||
| 	} | ||||
|  | ||||
| @ -32,8 +32,7 @@ func (c *Config) AddRuntime(name string, path string, setAsDefault bool) error { | ||||
| 
 | ||||
| 	config.Set("version", int64(2)) | ||||
| 
 | ||||
| 	switch runc := config.GetPath([]string{"plugins", "io.containerd.grpc.v1.cri", "containerd", "runtimes", "runc"}).(type) { | ||||
| 	case *toml.Tree: | ||||
| 	if runc, ok := config.GetPath([]string{"plugins", "io.containerd.grpc.v1.cri", "containerd", "runtimes", "runc"}).(*toml.Tree); ok { | ||||
| 		runc, _ = toml.Load(runc.String()) | ||||
| 		config.SetPath([]string{"plugins", "io.containerd.grpc.v1.cri", "containerd", "runtimes", name}, runc) | ||||
| 	} | ||||
|  | ||||
| @ -44,8 +44,7 @@ func (c *Config) AddRuntime(name string, path string, setAsDefault bool) error { | ||||
| 
 | ||||
| 	config := (toml.Tree)(*c) | ||||
| 
 | ||||
| 	switch runc := config.Get("crio.runtime.runtimes.runc").(type) { | ||||
| 	case *toml.Tree: | ||||
| 	if runc, ok := config.Get("crio.runtime.runtimes.runc").(*toml.Tree); ok { | ||||
| 		runc, _ = toml.Load(runc.String()) | ||||
| 		config.SetPath([]string{"crio", "runtime", "runtimes", name}, runc) | ||||
| 	} | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user