How can I override a typesafe config list value on the command line?

后端 未结 2 1742
旧巷少年郎
旧巷少年郎 2020-12-25 10:18

I have an application.conf file with a structure like the following:

poller {
  datacenters = []
}

I would like to override

2条回答
  •  眼角桃花
    2020-12-25 11:01

    I had the same issue some weeks ago, and finally dived into the source code to understand what's going on:

    • This feature is not implemented, it's not possible to define a list using command line argument

    Fixing it wouldn't be that hard, but someone need to take time to do it.

提交回复
热议问题