Replies: 5 comments 3 replies
-
/cc @radcortez (config) |
Beta Was this translation helpful? Give feedback.
-
This almost certainly seems like a bug to me. We don't even use the |
Beta Was this translation helpful? Give feedback.
-
I think it's due to the Quarkus property being rewritten to |
Beta Was this translation helpful? Give feedback.
-
Did you try using a more recent Quarkus version? With had some issues with unknown reporting due to the changes we did to the new config mechanism. |
Beta Was this translation helpful? Give feedback.
-
So, in this case, with #42106 we now generate and include in the property names all combinations of names that can be used to set REST Client configuration. Previously, the config was checked on demand, and names were being created on the fly, which caused issues such as #42100. Indeed, the way that the MP REST client defines how to set configuration as We don't really have an easy way to deal with this case. We could add a mechanism to ignore a listed set of names, but I'm not sure if it is worth the trouble, since this also seems to be an edge case. If this becomes a noticeable issue, we can revisit it. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Beginning Q 3.17.0, i.e. 3.16.4 does not manifest this, I can see this warning in my logs:
The app keeps working as it should, it's just that warning that pops up.
The only difference but for "haha" in URL between these two services is their package name. I literally copy pasted the files.
https://github.com/Karm/dev-null/tree/main/rest-client-kjah76/src/main/java/org/acme
https://github.com/Karm/dev-null/tree/main/rest-client-kjah76/src/main/java/quarkus/hahaha
Tests pass for both:
So it seems that the configuration parsing, processing
application.properties
gets confused on"quarkus.hahaha.Service"
QUESTION: Is this expected? Is "quarkus" effectively a reserved word for package naming beginning Quarkus 3.17.0?
Beta Was this translation helpful? Give feedback.
All reactions