[Optimize]GroupTopic信息修改为实时获取 (#1196)

This commit is contained in:
EricZeng
2023-11-27 21:08:05 +08:00
committed by GitHub
parent 8346453aa3
commit b6ea4aec19
3 changed files with 9 additions and 4 deletions

View File

@@ -77,7 +77,7 @@ public class ClusterGroupsController {
@GetMapping(value = "clusters/{clusterPhyId}/groups/{groupName}/topics-overview")
public PaginationResult<GroupTopicOverviewVO> getGroupTopicsOverview(@PathVariable Long clusterPhyId,
@PathVariable String groupName,
PaginationBaseDTO dto) {
PaginationBaseDTO dto) throws Exception {
return groupManager.pagingGroupTopicMembers(clusterPhyId, groupName, dto);
}