You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SecurityIdentity seems to require the quarkus-security dependency, for mTLS at least. Without it, explicitly or implicitly, the injection would fail with UnsatisfiedResolutionException. I got around the error by adding the dep, following the suggestion in quarkusio/quarkus#25122 (comment).
I suggest to mention the need for the dependency (I don't know if quarkus-security is the lowest-level key dependency; but looking at its transitive dependencies, this looks most appropriate). This could save hours for other new comers, like me.
An alternative, a better one if feasible, is to include the common cause in the UnsatisfiedResolutionException thrown, stating that it's possibly missing quarkus-security (or something else that is actionable).
Describe the bug
SecurityIdentity
seems to require thequarkus-security
dependency, for mTLS at least. Without it, explicitly or implicitly, the injection would fail withUnsatisfiedResolutionException
. I got around the error by adding the dep, following the suggestion in quarkusio/quarkus#25122 (comment).I suggest to mention the need for the dependency (I don't know if
quarkus-security
is the lowest-level key dependency; but looking at its transitive dependencies, this looks most appropriate). This could save hours for other new comers, like me.An alternative, a better one if feasible, is to include the common cause in the
UnsatisfiedResolutionException
thrown, stating that it's possibly missingquarkus-security
(or something else that is actionable).Which pages
https://quarkus.io/guides/security-authentication-mechanisms-concept#mutual-tls
The text was updated successfully, but these errors were encountered: