The zeebe task is activated but the prompt task is not completed. The intent is timed_out, the JobHandler logic is not executed, and no abnormal information is displayed. What is the reason? The version of Zeebe used is 1.3.4
Hi @bugbugmaker,
When a Job Worker fetches a job from Zeebe, it is locked for a specific time. The job must be completed within this time bound, or it will time out. Did you use an appropriate log duration?
{
"partitionId": 8,
"value": {
"type": "A",
"errorMessage": "",
"bpmnProcessId": "TEST",
"processDefinitionKey": 2251799814053684,
"retries": 0,
"retryBackoff": 0,
"recurringTime": -1,
"processDefinitionVersion": 6,
"processInstanceKey": 18014398509864070,
"elementInstanceKey": 18014398509864084,
"elementId": "Activity_0cdt96s",
"customHeaders": {
},
"deadline": 1686020110703,
"variables": {
},
"errorCode": "",
"worker": "[0xffffffe6][0xffffff9c][0xffffff8d][0xffffffe5][0xffffff8a][0xffffffa1]"
},
"key": 18014398509864086,
"timestamp": 1686020142080,
"position": 799754,
"valueType": "JOB",
"recordType": "EVENT",
"sourceRecordPosition": 799728,
"intent": "TIMED_OUT",
"rejectionType": "NULL_VAL",
"rejectionReason": "",
"brokerVersion": "1.3.14"
}
No exception information was prompted. My task should have timed out without executing specific logic.