diff --git a/config.go b/config.go index 1430a70..0cd90e4 100644 --- a/config.go +++ b/config.go @@ -318,8 +318,9 @@ func parseRoutinesConfig(routines *[]RoutineSpawner, cfg *ini.File, sectionName // ParseConfig takes the path of a configuration file and parses it into Configuration func ParseConfig(path string) (*Configuration, error) { iniOpt := ini.LoadOptions{ - Insensitive: true, - AllowShadows: true, + Insensitive: true, + AllowShadows: true, + AllowNonUniqueSections: true, } cfg, err := ini.LoadSources(iniOpt, path)