Hello,
I have a custom config source containing 'some.key=value' and when I start the application with mvn quarkus:dev I get:
java.util.NoSuchElementException: SRCFG00014: The config property some.key is required but it could not be found in any config source.
At startup, I can see in debugger the key/value is available on method ConfigSource.getValue(String propertyName), The method is first called with %dev prefix '%dev.some.key' which returns null and then it is called again without %dev. prefix which then returns correct value. But then the exception is thrown.
This application works fine in older versions. Does custom config source works differently now, or is it a bug?
Thanks!