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
minimal repro:
@Test def parseNestedObjectsWithMixedNotations() = { val config = ConfigFactory.parseString("a { b.c { d = 1 } }") assert { config != null } assertEquals(config.getConfig("a.b.c").getInt("d"), 1) }
this will fail throwing a NPE
The text was updated successfully, but these errors were encountered:
spotted on this line: https://github.com/akka/akka/blob/master/akka-stream/src/main/resources/reference.conf#L76
Sorry, something went wrong.
Bump on this issue. I encountered it adapting configs for lagom.js. I removed the mix notation as a work-around.
Completely forgot to take a closer look at this, thanks for the heads up @mliarakos !
No branches or pull requests
minimal repro:
this will fail throwing a NPE
The text was updated successfully, but these errors were encountered: