-
Notifications
You must be signed in to change notification settings - Fork 966
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce docs for arrays on env vars #706
Conversation
items = ["a", "b"] | ||
items += "c" | ||
|
||
using java arguments you specify the exact position: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
using java arguments you specify the exact position: | |
Using java arguments you specify the exact position: |
@@ -684,6 +684,20 @@ With this option enabled only environment variables starting with | |||
i.e. The environment variable `CONFIG_FORCE_a_b__c___d` set the | |||
configuration key `a.b-c_d` | |||
|
|||
### Set array values from env variables | |||
|
|||
Setting the value of array items from environment variables requires |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean a system property, not environment variables, right, from the example you give at the end?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, I fixed one occurrence but not the other.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
raised #710
### Set array values from env variables | ||
|
||
Setting the value of array items from environment variables requires | ||
specifing the index in the array for the value. So, while in HOCON |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
specifying
No description provided.