You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by he...@apache.org on 2022/03/23 14:04:01 UTC

[incubator-inlong] branch master updated: [INLONG-3337][Manager] Fix API error in manger client (#3338)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d0bd766  [INLONG-3337][Manager] Fix API error in manger client (#3338)
d0bd766 is described below

commit d0bd766a229ec670f65858226044aedda842391f
Author: kipshi <48...@users.noreply.github.com>
AuthorDate: Wed Mar 23 22:03:55 2022 +0800

    [INLONG-3337][Manager] Fix API error in manger client (#3338)
---
 .../java/org/apache/inlong/manager/client/api/impl/InlongGroupImpl.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/impl/InlongGroupImpl.java b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/impl/InlongGroupImpl.java
index 43c7ec4..14ebaa0 100644
--- a/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/impl/InlongGroupImpl.java
+++ b/inlong-manager/manager-client/src/main/java/org/apache/inlong/manager/client/api/impl/InlongGroupImpl.java
@@ -134,6 +134,7 @@ public class InlongGroupImpl implements InlongGroup {
         InlongGroupInfo groupInfo = InlongGroupTransfer.createGroupInfo(conf);
         InlongGroupRequest groupRequest = groupInfo.genRequest();
         Pair<String, String> idAndErr = managerClient.updateGroup(groupRequest);
+        this.groupContext.setGroupInfo(groupInfo);
         String errMsg = idAndErr.getValue();
         AssertUtil.isNull(errMsg, errMsg);
     }