vernedeng commented on code in PR #8410:
URL: https://github.com/apache/inlong/pull/8410#discussion_r1251626708
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/group/InlongGroupProcessService.java:
##########
@@ -312,9 +319,9 @@ private boolean pendingGroupOpt(InlongGroupInfo groupInfo,
String operator, Grou
List<WorkflowProcessEntity> entities =
workflowQueryService.listProcessEntity(processQuery);
entities.sort(Comparator.comparingInt(WorkflowProcessEntity::getId));
WorkflowProcessEntity lastProcess = entities.get(entities.size() -
1);
- EXECUTOR_SERVICE.execute(() -> {
- workflowService.continueProcess(lastProcess.getId(), operator,
"Reset group status");
- });
+ UserInfo userInfo = LoginUserUtils.getLoginUser();
+ EXECUTOR_SERVICE.execute(
Review Comment:
fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]