Made strict behaviour optional default to true for conf parsing. HSM and Doorman can opt in for this functionality independently.

This commit is contained in:
sollecitom
2018-03-02 09:19:47 +00:00
parent 38208d9e44
commit 5e5cb1888b
2 changed files with 9 additions and 9 deletions

View File

@ -90,5 +90,5 @@ fun parseParameters(configFile: Path): GeneratorParameters {
return ConfigFactory
.parseFile(configFile.toFile(), ConfigParseOptions.defaults().setAllowMissing(true))
.resolve()
.parseAs()
.parseAs(false)
}