-
1. Re: Release task in LocalTaskService in jBPM5.2
rahulamt Oct 1, 2012 6:46 AM (in response to rahulamt)The cause is that the Task instance is not persisted in the database so the status is not updated.
I am adding a case statement here after skip.
case Skip: {
postTaskSkipOperation(task, userId);
break;
}
case Release: {
postTaskReleaseOperation(task);
break;
}
and in postTaskReleaseOperation(task); added the following...
private void postTaskReleaseOperation(Task task) {
// We may add some even support trigger here.
persistInTransaction(task);
}
-
2. Re: Release task in LocalTaskService in jBPM5.2
rahulamt Oct 1, 2012 6:51 AM (in response to rahulamt)I am using postgres database.
I am facing the same issue with the claimed task.
https://community.jboss.org/message/753466#753466
Should I raise the jira issue for this?