Skip to content

Commit 89c12c1

Browse files
committed
Use empty string for default runtime-config-override
This change ensures that we unnecessarily print warnings for runtimes where these configs are not applicable. This removes the following warnings: WARN[0000] Ignoring runtime-config-override flag for docker Signed-off-by: Evan Lezar <elezar@nvidia.com>
1 parent 9d42944 commit 89c12c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/nvidia-ctk/runtime/configure/configure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func (m command) build() *cli.Command {
160160
Name: "runtime-config-override",
161161
Destination: &config.runtimeConfigOverrideJSON,
162162
Usage: "specify additional runtime options as a JSON string. The paths are relative to the runtime config.",
163-
Value: "{}",
163+
Value: "",
164164
EnvVars: []string{"RUNTIME_CONFIG_OVERRIDE"},
165165
},
166166
}

0 commit comments

Comments
 (0)