eigengo/lift

Issue with how config files handle lists held in environment variables

Closed this issue · 1 comments

Currently, production specifies lists of hosts, seed nodes, etc. using comma separated values passed in via environment variables. These are then embedded for use by Lift via config code such as:

akka.cluster.seed-nodes = [ ${?SEED_NODES} ]

The problem here is that values in environment variables are treated as single string values and not as lists of string values.

PR #91 has dealt with this issue, so closing this issue.