We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ce78da + 6d7dd04 commit 4324aeeCopy full SHA for 4324aee
cmd/nvidia-ctk/runtime/configure/configure.go
@@ -160,7 +160,7 @@ func (m command) build() *cli.Command {
160
Name: "runtime-config-override",
161
Destination: &config.runtimeConfigOverrideJSON,
162
Usage: "specify additional runtime options as a JSON string. The paths are relative to the runtime config.",
163
- Value: "{}",
+ Value: "",
164
EnvVars: []string{"RUNTIME_CONFIG_OVERRIDE"},
165
},
166
}
internal/discover/mounts_test.go
@@ -100,7 +100,7 @@ func TestMounts(t *testing.T) {
100
lookup: &lookup.LocatorMock{
101
LocateFunc: func(s string) ([]string, error) {
102
if s == "error" {
103
- return nil, fmt.Errorf(s)
+ return nil, fmt.Errorf("error")
104
105
return []string{s}, nil
106
0 commit comments