bpmnServer / bpmn-server

BPMN 2.0 server for Node.js , providing modeling, execution, persistence and monitoring for Workflow. along with sample UI. Intended to be developers workbench for BPMN 2.0
MIT License
186 stars 48 forks source link

`endedAt` for Boundary Events #113

Closed MaheshkumarSundaram closed 1 year ago

MaheshkumarSundaram commented 1 year ago

Hi @ralphhanna

Issue: endedAt for a Boundary Event is null instead of the actual end date & time after it's execution.

Expected Behaviour: endedAt should have an actual end date & time after it gets executed

Actual Behaviour: endedAt is null after it gets executed

Example: image

Here, you can see the boundary timers get executed. But their endedAt value for the items are null in MongoDB.

But, in the other case image

Here the boundary timers are not executed or cancelled. In this case, endedAt values for the items have actual date & time.

Could you please look into this?

Thank you.

ralphhanna commented 1 year ago

Fixed in release 1.3.28

image

ralphhanna commented 1 year ago

Thanks

MaheshkumarSundaram commented 1 year ago

Thank you @ralphhanna