You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, UserSettings.loadConfig has a type of sync.Once so the config files only need to be reloaded once. This can be inconvenient if the files need to be re-parsed for updated values in the future.
As discussed here, by making this a pointer to sync.Once, and adding a helper function, it would be possible to reload the configuration when necessary.
The text was updated successfully, but these errors were encountered:
Currently, UserSettings.loadConfig has a type of sync.Once so the config files only need to be reloaded once. This can be inconvenient if the files need to be re-parsed for updated values in the future.
As discussed here, by making this a pointer to sync.Once, and adding a helper function, it would be possible to reload the configuration when necessary.
The text was updated successfully, but these errors were encountered: