van-vothanh opened a new issue, #14221: URL: https://github.com/apache/druid/issues/14221
I'm getting the below error while trying to load a custom authenticator and authorizer that I'm implementing. ``` Please make sure to load all the necessary extensions and jars with type 'saml' on 'druid/broker' service. Could not resolve type id 'oidc' as a subtype of `org.apache.druid.server.security.Authenticator` known type ids = [allowAll, anonymous, basic, pac4j, trustedDomain] ``` ### Affected Version 25.0.0 ### Description I get the error when loading my custom authenticator and authoriser on a locally hosted druid instance. Below is my security configuration (in `common.runtime.properties`) ``` druid.auth.authenticatorChain=["saml"] druid.auth.authenticator.saml.type=saml druid.auth.authenticator.saml.authorizerName=saml druid.auth.authenticator.saml.metadataDocumentURI=http://localhost:3000/ ``` I do have my custom `Authenticator` and `Authorizer` annotated with `JsonTypeName("saml")`, and I can see the jar being loaded at startup. Any help would be greatly appreciated. Thank you -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
