-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sort identity providers by priority in QuarkusIdentityProviderManagerImpl #42126
Comments
Thanks @danilopiazza for marking it as an enhancement, it looks like a bug. What is happening in your case, do you see built in providers getting in front unexpectedly ? AFAIK, if you use CDI |
But that would be a workaround. if it has a priority method then it should be effective |
Yes, I see this exact behavior and I can confirm that the workaround is working. Thanks! |
Description
IdentityProvider
from quarkus-security has apriority
method which, apparently, is not used anywhere.Should
QuarkusIdentityProviderManagerImpl
sort each value ofproviders
by priority, like it does foraugmentors
?Implementation ideas
The implementation could look like this code from
QuarkusIdentityProviderManagerImpl.Builder.build()
:The text was updated successfully, but these errors were encountered: