Re-set config save default state to true (#1489)

Previously, no config updates were ever saved out. At all. Oops.
This commit is contained in:
Matt
2024-10-25 20:41:48 -07:00
committed by GitHub
parent f8e25ced89
commit d04c4b8231

View File

@@ -54,7 +54,7 @@ public class ConfigManager {
// special case flag to disable flushing settings to disk at shutdown. Avoids the jvm shutdown
// hook overwriting the settings we just uploaded
private boolean flushOnShutdown = true;
private boolean allowWriteTask = false;
private boolean allowWriteTask = true;
enum ConfigSaveStrategy {
SQL,