Hi,
we are using the task-overdue-job-handler (camunda-7-code-examples/snippets/task-overdue-job-handler at main · camunda-consulting/camunda-7-code-examples · GitHub) to handle usertaks escalations.
The job-handler create a TimerEntity that is scheduled via the JobManager. When i try to migrate a process in which the job is scheduled, i receive the following error:
{
“type”: “MigratingProcessInstanceValidationException”,
“message”: “ENGINE-23004 Cannot migrate process instance ‘620b4670-cb36-11ea-adbe-10e7c61791f1’:\n\tProcess instance contains not migrated jobs: [623b7e4b-cb36-11ea-adbe-10e7c61791f1, 623c68b2-cb36-11ea-adbe-10e7c61791f1]\n”,
“validationReport”: {
“processInstanceId”: “620b4670-cb36-11ea-adbe-10e7c61791f1”,
“failures”: [
“Process instance contains not migrated jobs: [623b7e4b-cb36-11ea-adbe-10e7c61791f1, 623c68b2-cb36-11ea-adbe-10e7c61791f1]”
],
“activityInstanceValidationReports”: ,
“transitionInstanceValidationReports”:
}
}
How can i migrate this jobs?