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
commit c68b4be12f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"},
},
}