Hello,
I have a common application.properties file and also some specific application-*.properties files, which would be selected additionally to application.properties at runtime with `quarkus.config.locations` property. But this doesn't work anymore:
java -jar -Dquarkus.config.locations=application-foo.properties -Dquarkus.profile=production target/quarkus-app/*.jar
2021-10-28 09:45:25,667 WARN [io.qua.run.con.ConfigRecorder] (main) Build time property cannot be changed at runtime:
- quarkus.config.locations was 'null' at build time and is now 'application-foo.properties'
With quarkus 2.1.3 it used to work just fine. Is this a bug?
thanks!