You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Array overrides with environment variables, such as:
-Dsettings.list.0.elem="value"
Do not get parsed properly by circe config, this produces an error:
C[A]: DownField(list)
Internally this structure gets printed as:
{"list":{"0":{"elem":"value"}}}
So it probably gets converted to an object with "0" as a key, not to a JsonArray. This would need either smart detection of objects with numeric keys or some kind of delaying of Json conversion as discussed here: #12 (comment)
Array overrides with environment variables, such as:
Do not get parsed properly by circe config, this produces an error:
Internally this structure gets printed as:
So it probably gets converted to an object with
"0"
as a key, not to aJsonArray
. This would need either smart detection of objects with numeric keys or some kind of delaying of Json conversion as discussed here: #12 (comment)See description of the syntax: lightbend/config#86 (comment)
The text was updated successfully, but these errors were encountered: