-
Notifications
You must be signed in to change notification settings - Fork 564
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
Support HOCON references across sources #4153
Comments
The substitution across sources is very difficult to do as each config source is handled and resolved independently. The spec is naturally not aware of config sources per se, so it's likely referring to (included) files. |
FYI the default choice of |
@janotav So the lazy resolution of references did not work for you for some reason? |
No, it did not work in our case. In our hocon conf we use following pattern frequently:
We basically provide same standard/pattern value, but allow overriding it using environment variable in the environment where the service is running. This With cross-source support now implemented in Helidon, I thought we might be able to avoid this custom code and simply use stock
It is not a big deal though and we can stick to the original workaround of using custom |
Environment Details
Problem Description
According to spec:
When following configuration is split into two files that are both added as separate ConfigSource:
The substitution is not performed.
The text was updated successfully, but these errors were encountered: