Fixed issue preventing fallback and metadata files from being saved in DOPPLER_CONFIG_DIR#487
Merged
nmanoogian merged 2 commits intomasterfrom May 29, 2025
Merged
Fixed issue preventing fallback and metadata files from being saved in DOPPLER_CONFIG_DIR#487nmanoogian merged 2 commits intomasterfrom
nmanoogian merged 2 commits intomasterfrom
Conversation
a3a297a to
520c9c9
Compare
…n DOPPLER_CONFIG_DIR This test fails without the next commit.
…n DOPPER_CONFIG_DIR
520c9c9 to
55dce35
Compare
apazzolini
approved these changes
Apr 30, 2025
| var UserConfigFile string | ||
|
|
||
| // UserFallbackDir (e.g. /home/user/doppler/.doppler.yaml) | ||
| var UserFallbackDir string |
Contributor
There was a problem hiding this comment.
Would these be better named as FallbackDir and MetadataDir since they're still used even if the user hasn't configured them? Or am I misunderstanding that part?
Contributor
Author
There was a problem hiding this comment.
Good question -- SetConfigDir is called in the init function with the default $HOME/.doppler directory, which is invoked automatically when the module loads. SetConfigDir already updates UserConfigDir and UserConfigFile so I'm mostly just following the existing naming pattern
cli/pkg/configuration/config.go
Lines 51 to 58 in f383368
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
DOPPLER_CONFIG_DIRwas being appropriately used for reading/writing the configuration files but was not being used as the default for fallback and metadata files. This change hoists the default metadata and fallback directories to theconfigurationcontroller so it can be defined in the same spot asconfiguration.UserConfigFile.