Skip to content

Commit

Permalink
Re-set config save default state to true (PhotonVision#1489)
Browse files Browse the repository at this point in the history
Previously, no config updates were ever saved out. At all. Oops.
  • Loading branch information
mcm001 authored Oct 26, 2024
1 parent f8e25ce commit d04c4b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d04c4b8

Please sign in to comment.