Skip to content

Commit

Permalink
Fix tasks not execute in sub-process when rerun scheduled process. #2903
Browse files Browse the repository at this point in the history
  • Loading branch information
yh2388 authored and lenboo committed Jun 6, 2020
1 parent 63d91fd commit b172f31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ private void createSubWorkProcessCommand(ProcessInstance parentProcessInstance,

CommandType fatherType = parentProcessInstance.getCommandType();
CommandType commandType = fatherType;
if(childInstance == null || commandType == CommandType.REPEAT_RUNNING){
if(childInstance == null){
String fatherHistoryCommand = parentProcessInstance.getHistoryCmd();
// sub process must begin with schedule/complement data
// if father begin with scheduler/complement data
Expand Down

0 comments on commit b172f31

Please sign in to comment.