-
Notifications
You must be signed in to change notification settings - Fork 851
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
How to skip or authorize not authorized to access topics #208
Comments
for scenarios like this, I usually build the project locally by modifying KafkaHighLevelAdminClient.describeTopicConfigs method to include only the topics that's needed. final var resources = topicNames.stream() |
What is actually the reason to throw the TopicAuthorizationException exception? Simply changing this line https://github.com/obsidiandynamics/kafdrop/blob/master/src/main/java/kafdrop/service/KafkaHighLevelAdminClient.java#L112 and have it also return a |
This issue is stale because it has been open for 30 days with no activity. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
When I'm requesting all topics by going to
localhost:9000/
I'm getting this exception:Does that mean that I have to authenticate in order to access some of topics? How can I do it?
It's possible that I might not get access to those topics, in that case would it be possible to just skip unauthorised topics? Can someone indicate where in the code I would need to make changes?
The text was updated successfully, but these errors were encountered: