Hi, Can anyone suggest is there any chance that I can get the history data when the flow node (with flowable:async = false )fails.
I found that when the node is set to sync ,all data will be lost when the node fails,but I need the data showing whether the node fails or not. For example :
<startEvent id="startEvent"/>
<sequenceFlow sourceRef="startEvent" targetRef="someService"/>
<serviceTask id="someService" name="" flowable:class="xxx.xxx.SomeService" flowable:async="false"/>
<sequenceFlow sourceRef="someService" targetRef="end"/>
<endEvent id="end">
</endEvent>
</process>
In this case ,The process will fail at serviceTask, when it fails, no history data will be stored, Is there any configuration about this ?
If not ,how could I get the history data of this failed service task?