@@ -210,7 +210,11 @@ func (c *Config) getPackageConfigMap(ctx context.Context, packageName string) (m
210
210
return configAsMap , nil
211
211
}
212
212
213
- return map [string ]any {}, nil
213
+ // Package is something other than map, so set its value to an
214
+ // empty map.
215
+ emptyMap := map [string ]any {}
216
+ packageSection [packageName ] = emptyMap
217
+ return emptyMap , nil
214
218
215
219
}
216
220
func (c * Config ) GetPackageConfig (ctx context.Context , packageName string ) (* Config , error ) {
@@ -659,6 +663,17 @@ func contains[T comparable](slice []T, elem T) bool {
659
663
return false
660
664
}
661
665
666
+ func deepCopyConfigMap (src map [string ]any ) map [string ]any {
667
+ new := map [string ]any {}
668
+ for key , val := range src {
669
+ if contains ([]string {"packages" , "config" , "interfaces" }, key ) {
670
+ continue
671
+ }
672
+ new [key ] = val
673
+ }
674
+ return new
675
+ }
676
+
662
677
// mergeInConfig takes care of merging inheritable configuration
663
678
// in the config map. For example, it merges default config, then
664
679
// package-level config, then interface-level config.
@@ -684,15 +699,28 @@ func (c *Config) mergeInConfig(ctx context.Context) error {
684
699
pkgLog .Err (err ).Msg ("failed to get package config" )
685
700
return fmt .Errorf ("failed to get package config: %w" , err )
686
701
}
702
+ pkgLog .Trace ().Msg ("got package config map" )
703
+
687
704
configSectionUntyped , configExists := packageConfig ["config" ]
688
705
if ! configExists {
689
- packageConfig [ "config" ] = defaultCfg
690
- continue
706
+ pkgLog . Trace (). Msg ( "config section doesn't exist, setting it to a deepcopy of the top-level config" )
707
+ packageConfig [ "config" ] = deepCopyConfigMap ( defaultCfg )
691
708
}
709
+
710
+ pkgLog .Trace ().Msg ("got config section for package" )
692
711
// Sometimes the config section may be provided, but it's nil.
693
712
// We need to account for this fact.
694
713
if configSectionUntyped == nil {
695
- configSectionUntyped = map [string ]any {}
714
+ pkgLog .Trace ().Msg ("config section is nil, converting to empty map" )
715
+ emptyMap := map [string ]any {}
716
+
717
+ // We need to add this to the "global" config mapping so the change
718
+ // gets persisted, and also into configSectionUntyped for the logic
719
+ // further down.
720
+ packageConfig ["config" ] = emptyMap
721
+ configSectionUntyped = emptyMap
722
+ } else {
723
+ pkgLog .Trace ().Msg ("config section is not nil" )
696
724
}
697
725
698
726
configSectionTyped := configSectionUntyped .(map [string ]any )
@@ -701,8 +729,11 @@ func (c *Config) mergeInConfig(ctx context.Context) error {
701
729
if contains ([]string {"packages" , "config" }, key ) {
702
730
continue
703
731
}
732
+ keyValLog := pkgLog .With ().Str ("key" , key ).Str ("value" , fmt .Sprintf ("%v" , value )).Logger ()
733
+
704
734
_ , keyExists := configSectionTyped [key ]
705
735
if ! keyExists {
736
+ keyValLog .Trace ().Msg ("setting key to value" )
706
737
configSectionTyped [key ] = value
707
738
}
708
739
}
0 commit comments