We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
reload
1 parent c51f848 commit c67a30eCopy full SHA for c67a30e
internal/action/command.go
@@ -361,6 +361,11 @@ func reloadRuntime(reloadPlugins bool) {
361
parsedSettings := config.ParsedSettings()
362
defaultSettings := config.DefaultAllSettings()
363
for k := range defaultSettings {
364
+ if _, ok := config.VolatileSettings[k]; ok {
365
+ // reload should not override volatile settings
366
+ continue
367
+ }
368
+
369
if _, ok := parsedSettings[k]; ok {
370
err = doSetGlobalOptionNative(k, parsedSettings[k])
371
} else {
0 commit comments