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
simple-test {
description = "Nothing will be included"
include "lib/common"
}
lib/common.conf
common-value = 42
Doing a hocon.ParseResource("myconf.conf") results in an output of so:
{
simple-test: {
description: Nothing will be included
}
}
It is not including lib/common.conf which breaks a feature of Lightbend's Configuration Library. "include with no file extension includes any of .conf, .json, .properties".
The text was updated successfully, but these errors were encountered:
Consider the example:
myconf.conf
lib/common.conf
Doing a
hocon.ParseResource("myconf.conf")
results in an output of so:It is not including
lib/common.conf
which breaks a feature of Lightbend's Configuration Library."include with no file extension includes any of .conf, .json, .properties"
.The text was updated successfully, but these errors were encountered: