-
Bug
-
Resolution: Done
-
Major
-
1.28.0.Final
-
None
-
False
-
None
-
False
-
---
-
---
-
2023 Week 03-05 (from Jan 16)
-
Low
When trying to produce multiple events in the 'end' property of a state, only the first one seems to be produced. For example, in the example below:
{ "name": "DummyState", "type": "inject", "data": {}, "end": { "produceEvents": [ { "eventRef": "RequestActivitiesInfractionsIdentification" }, { "eventRef": "RequestAmplitudesInfractionsIdentification" } ] } }
only the event FirstDummy is fired.
However, both events seems to be produced correctly when using the property '' of a state property 'transition', like this :
"transition": { "produceEvents": [ { "eventRef": "FirstDummyEvent" }, { "eventRef": "SecondDummyEvent" } ], "nextState": "End" }