Merge pull request #658 from elezar/fix-default-value

Use empty string for default runtime-config-override
This commit is contained in:
Evan Lezar
2024-08-19 11:34:36 +02:00
committed by GitHub

View File

@@ -160,7 +160,7 @@ func (m command) build() *cli.Command {
Name: "runtime-config-override",
Destination: &config.runtimeConfigOverrideJSON,
Usage: "specify additional runtime options as a JSON string. The paths are relative to the runtime config.",
Value: "{}",
Value: "",
EnvVars: []string{"RUNTIME_CONFIG_OVERRIDE"},
},
}