conf file :
hdfs {
asd = 1
asd.bla = 2
}
when I m trying to load the config file
config.getConfig("hdfs")
the keys are merged, and are not separeted
Config(SimpleConfigObject({"asd":{"bla":2}}))
Workaround to use conf file like this :
hdfs {
asd = 1
asd-bla = 2
}
Config(SimpleConfigObject({"asd":1,"asd-bla":2}))