We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a09f0e7 + 80b0849 commit e0832fcCopy full SHA for e0832fc
1 file changed
pkg/kadm/topics.go
@@ -26,7 +26,11 @@ func (cl *Client) ListTopics(
26
if err != nil {
27
return nil, err
28
}
29
- t.FilterInternal()
+ // Only filter internal topics when listing all topics (no specific topics requested).
30
+ // If specific topics are named, include them even if they are internal.
31
+ if len(topics) == 0 {
32
+ t.FilterInternal()
33
+ }
34
return t, nil
35
36
0 commit comments