This is an automated email from the ASF dual-hosted git repository.
jmclean pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new c031c16ea1 [#7512] Improve(client):Topic does support audit
information (#7528)
c031c16ea1 is described below
commit c031c16ea12bac41cf79d56a6e4e5374fbcd2d12
Author: Xiaojian Sun <[email protected]>
AuthorDate: Wed Jul 2 06:26:17 2025 +0800
[#7512] Improve(client):Topic does support audit information (#7528)
### What changes were proposed in this pull request?
Topic does support audit information
### Why are the changes needed?
Fix: #7512
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
N/A
---
.../src/main/java/org/apache/gravitino/client/GenericTopic.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/clients/client-java/src/main/java/org/apache/gravitino/client/GenericTopic.java
b/clients/client-java/src/main/java/org/apache/gravitino/client/GenericTopic.java
index 0048d489ce..b7c10f0677 100644
---
a/clients/client-java/src/main/java/org/apache/gravitino/client/GenericTopic.java
+++
b/clients/client-java/src/main/java/org/apache/gravitino/client/GenericTopic.java
@@ -53,7 +53,7 @@ class GenericTopic implements Topic, SupportsTags,
SupportsRoles {
@Override
public Audit auditInfo() {
- return null;
+ return topicDTO.auditInfo();
}
@Override