Hello everyone,
I’m trying to use an Interrupting timer in Camunda 8 to interrupt a task after a while of time, but when the timer is triggered the flow is going into two paths, the timer path and the interrupted task path as below
I can’t figure out why the flow goes into two paths not only one path (timer path) However, It is worked as expected in Camunda 7
Can you upload your model?
@Niall Sure, here is the model camunda8.bpmn (11.9 KB)
So - the problem is that you have two sequence flows coming out of the timer event which creates and implicit parallel split. Easily fixed though
I got it, I haven’t noticed the curve at the start of the arrow. Thank you very much @Niall