abhishekagarwal87 commented on issue #14221:
URL: https://github.com/apache/druid/issues/14221#issuecomment-1538427571

   there isn't one handy. On console, you can check all the loaded extension. 
You should ensure that yours is there. If it is, then the problem is likely in 
type registration. This is how its done in BasicSecurityDruidModule
   
   ```
    @Override
     public List<? extends Module> getJacksonModules()
     {
       return ImmutableList.of(
           new SimpleModule("BasicDruidSecurity").registerSubtypes(
               BasicHTTPAuthenticator.class,
               BasicHTTPEscalator.class,
               BasicRoleBasedAuthorizer.class,
               NettyHttpClient.class
           )
       );
     }
   ```


-- 
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]

Reply via email to