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 e4b22ce94a [INLONG-9126][Manager] Fix the problem of unable to modify 
the responsible person of the group (#9127)
e4b22ce94a is described below

commit e4b22ce94a42718b34715d972b6d836893a933c2
Author: fuweng11 <76141879+fuwen...@users.noreply.github.com>
AuthorDate: Thu Oct 26 21:14:04 2023 +0800

    [INLONG-9126][Manager] Fix the problem of unable to modify the responsible 
person of the group (#9127)
---
 .../org/apache/inlong/manager/service/group/AbstractGroupOperator.java   | 1 +
 1 file changed, 1 insertion(+)

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 db86d5aff7..9702d45d90 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
@@ -110,6 +110,7 @@ public abstract class AbstractGroupOperator implements 
InlongGroupOperator {
     @Transactional(rollbackFor = Throwable.class, isolation = 
Isolation.REPEATABLE_READ)
     public void updateOpt(InlongGroupRequest request, String operator) {
         InlongGroupEntity entity = 
groupMapper.selectByGroupId(request.getInlongGroupId());
+        CommonBeanUtils.copyProperties(request, entity, true);
         // set the ext params
         setTargetEntity(request, entity);
         entity.setModifier(operator);

Reply via email to