Skip to content

Commit

Permalink
bugfix: populate appVersion for child executions (Activiti#3115)
Browse files Browse the repository at this point in the history
Part of AAE-1600
  • Loading branch information
zoltanpalfi authored and mergify[bot] committed Jan 27, 2020
1 parent ff8f9d3 commit fc2793f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ public ExecutionEntity createChildExecution(ExecutionEntity parentExecutionEntit
childExecution.setProcessInstanceId(parentExecutionEntity.getProcessInstanceId() != null
? parentExecutionEntity.getProcessInstanceId() : parentExecutionEntity.getId());
childExecution.setParentProcessInstanceId(parentExecutionEntity.getParentProcessInstanceId());
childExecution.setAppVersion(parentExecutionEntity.getAppVersion());
childExecution.setScope(false);

// manage the bidirectional parent-child relation
Expand Down

0 comments on commit fc2793f

Please sign in to comment.