We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To reproduce the issue several things need to come together:
${?FOO}
Please see an example for above (url2 added for use-case example only and does not affect reproducibility):
url2
app.conf:
app.conf
root { level1 { url1 = "http://default-1" url1 = ${?FOO} url2 = "http://default-2" } } include "dev.conf"
dev.conf:
dev.conf
root { level1 { url2 = "http://dev-2" } }
test.py:
test.py
from pyhocon import ConfigFactory print(ConfigFactory.parse_file('app.conf').get_string('root.level1.url1'))
Expected: http://default-1 Actual: None
http://default-1
None
Reproduced with v0.3.61, Python 3.9
v0.3.61
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce the issue several things need to come together:
${?FOO}
.Please see an example for above (
url2
added for use-case example only and does not affect reproducibility):app.conf
:dev.conf
:test.py
:Expected:
http://default-1
Actual:
None
Reproduced with
v0.3.61
, Python 3.9The text was updated successfully, but these errors were encountered: