If you have receive a TxAbortEvent, the next TxStartedEvent with same
globalTxId will be rejected.
Look at the code in class TxConsistentService.
`
public boolean handle(TxEvent event) {
if (types.contains(event.type()) && isGlobalTxAborted(event)) {
LOG.info("Transaction event {} rejected, because its parent with
globalTxId {} was already aborted",
event.type(), event.globalTxId());
return false;
}
eventRepository.save(event);
return true;
}
`
[ Full content available at:
https://github.com/apache/incubator-servicecomb-saga/issues/281 ]
This message was relayed via gitbox.apache.org for [email protected]