Flavio Donzé

Results 3 issues of Flavio Donzé

After using a `org.activiti.engine.delegate.TaskListener` to set the assignee of a `DelegateTask`, the `HistoricTaskInstance.assignee` is not set. ``` public class TestListener implements TaskListener { @Override public void notify(DelegateTask delegateTask) { delegateTask.setAssignee("Person_system");...

After the update from 5.21.0 to 7.3.0 I get the following exception after calling: `taskService.complete(taskId, variables);` Is there some additional manual migration required? Seems like the execution parent is missing,...

In a `org.flowable.engine.delegate.TaskListener` setting the assignee (`delegateTask.setAssignee()`) does store the assignee in `[ACT_RU_TASK]` but not in `[ACT_HI_TASKINST]`. ``` public class TestListener implements TaskListener { @Override public void notify(DelegateTask delegateTask) {...