Skip to content

Commit d0d1323

Browse files
Fix bug with inconsistent global properties
1 parent a60957b commit d0d1323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/config/viper_store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (s *ViperConfigStore) GetProfileNames() []string {
117117

118118
profileNames := make([]string, 0, len(allKeys))
119119
for _, key := range allKeys {
120-
if !slices.Contains(GlobalProperties(), key) {
120+
if !slices.Contains(AllProperties(), key) {
121121
profileNames = append(profileNames, key)
122122
}
123123
}

0 commit comments

Comments
 (0)