This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 4ffe4ea718 [INLONG-9147][Manager] The group details are displayed with 
the tag of the cluster to which the group belongs (#9148)
4ffe4ea718 is described below

commit 4ffe4ea7189565077df5c3186bee34848f5fb831
Author: fuweng11 <76141879+fuwen...@users.noreply.github.com>
AuthorDate: Mon Oct 30 14:11:56 2023 +0800

    [INLONG-9147][Manager] The group details are displayed with the tag of the 
cluster to which the group belongs (#9148)
---
 .../org/apache/inlong/manager/client/api/service/InlongStreamApi.java   | 2 +-
 .../org/apache/inlong/manager/service/group/AbstractGroupOperator.java  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
 
b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
index 3a50227acc..273c50fee9 100644
--- 
a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
+++ 
b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/service/InlongStreamApi.java
@@ -51,7 +51,7 @@ public interface InlongStreamApi {
     Call<Response<InlongStreamInfo>> getStream(@Query("groupId") String 
groupId,
             @Query("streamId") String streamId);
 
-    @GET("/stream/getBrief")
+    @GET("stream/getBrief")
     Call<Response<InlongStreamBriefInfo>> getStreamBriefInfo(@Query("groupId") 
String groupId,
             @Query("streamId") String streamId);
 
diff --git 
a/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/group/AbstractGroupOperator.java
 
b/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/group/AbstractGroupOperator.java
index 9702d45d90..bd2779bbc2 100644
--- 
a/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/group/AbstractGroupOperator.java
+++ 
b/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/group/AbstractGroupOperator.java
@@ -132,6 +132,7 @@ public abstract class AbstractGroupOperator implements 
InlongGroupOperator {
     @Override
     public Map<String, Object> getClusterInfoByTag(String clusterTag) {
         Map<String, Object> clusterMap = new HashMap<>();
+        clusterMap.put("inlongClusterTag", clusterTag);
         Set<String> mqClusters = Sets.newHashSet(ClusterType.PULSAR, 
ClusterType.TUBEMQ, ClusterType.KAFKA);
         List<InlongClusterEntity> clusterEntities = 
clusterEntityMapper.selectByClusterTag(clusterTag);
         for (InlongClusterEntity clusterEntity : clusterEntities) {

Reply via email to