-
Bug
-
Resolution: Done
-
Minor
-
7.7.1.GA
-
Release Notes
-
-
-
-
-
-
CR1
-
-
-
Workaround Exists
-
-
-
2020 Week 34-36 (from Aug 17)
Observing below warning if task is skipped from task vent listener.
~~~
2020-07-17 05:33:28,898 WARN [org.jbpm.services.task.lifecycle.listeners.BAMTaskEventListener] (default task-60) Unable find bam task entry for task id 1 'task', skipping bam task update
~~~
It looks like the issue only happens if skip tasks from the task event listeners.
Case 1 -: When the task is skipped using java client then Warning doesn't appear
---------
userTaskClient.skipTask(containerId, 1l, USER);
Case 2 -: When the task is skipped using REST API then also Warning doesn't appear
--------
Case 3 -: But warning appears when the task is attempted using task service implementation on "afterTaskAddedEvent" although the task is getting skipped successfully.
---------
taskService.skip(event.getTask().getId().longValue(), owner);
Although the task is getting skipped, why is throwing Warning while skipping.
- is related to
-
JBPM-9310 Warning in "BAMTaskEventListener" if task is skipped from task event listener
- Resolved
- relates to
-
RHPAM-3247 IllegalArgumentException when task is skipped in afterTaskAddedEvent
- Closed