You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/09/07 05:58:56 UTC

[inlong] branch master updated: [INLONG-5812][Manager] Fix if the data group execution fails, it cannot be executed again (#5813)

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 666ab4ba8 [INLONG-5812][Manager] Fix if the data group execution fails, it cannot be executed again (#5813)
666ab4ba8 is described below

commit 666ab4ba89174cd13ca62b8b9cd50d4cbbd82d7f
Author: xuesongxs <54...@users.noreply.github.com>
AuthorDate: Wed Sep 7 13:58:51 2022 +0800

    [INLONG-5812][Manager] Fix if the data group execution fails, it cannot be executed again (#5813)
---
 .../inlong/manager/service/listener/group/InitGroupFailedListener.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/listener/group/InitGroupFailedListener.java b/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/listener/group/InitGroupFailedListener.java
index a09f5f9ee..f8864b615 100644
--- a/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/listener/group/InitGroupFailedListener.java
+++ b/inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/listener/group/InitGroupFailedListener.java
@@ -63,7 +63,6 @@ public class InitGroupFailedListener implements ProcessEventListener {
         // update inlong group status
         String operator = context.getOperator();
         groupService.updateStatus(groupId, GroupStatus.CONFIG_FAILED.getCode(), operator);
-        groupService.update(form.getGroupInfo().genRequest(), operator);
 
         // update inlong stream status
         streamService.updateStatus(groupId, null, StreamStatus.CONFIG_FAILED.getCode(), operator);