-
It seems there's a disparency with how different extension in Quarkus read ENV file variables. If I do a service with However if put a Likewise Is there a reason or is it an oversight? If it's an oversight is it something that could and would be fixed? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
/cc @radcortez |
Beta Was this translation helpful? Give feedback.
-
When you have something like Now, the REST Client config did work without having to declare the dotted version because it was just querying all possible combinations, which is not a desired behavior. See:
Because we didn't want to remove that behaviour, we added some proper support for it with:
Such extensions like |
Beta Was this translation helpful? Give feedback.
When you have something like
QUARKUS_REST_CLIENT_MY_CLIENT_URL
, whereMY_CLIENT
is a dynamic name, we cannot reliably determine only with this information ifMY_CLIENT
should bemy-client
(dash),my.client
(dot), or evenmy_client
(underscore): https://quarkus.io/guides/config-reference#environment-variablesNow, the REST Client config did work without having to declare the dotted version because it was just querying all possible combinations, which is not a desired behavior. See:
Because we didn't want to remove that behaviour, we added some proper support for it with:
Such extensions like
quarkus-rest-client-oidc-filter
orquarks-lo…