@@ -925,7 +925,7 @@ MtmEndTransaction(MtmCurrentTrans* x, bool commit)
925
925
* Send notification only if ABORT happens during transaction processing at replicas,
926
926
* do not send notification if ABORT is receiver from master
927
927
*/
928
- MTM_LOG2 ("%d: send ABORT notification abort transaction %d to coordinator %d" , MyProcPid , x -> gtid .xid , x -> gtid .node );
928
+ MTM_LOG1 ("%d: send ABORT notification abort transaction %d to coordinator %d" , MyProcPid , x -> gtid .xid , x -> gtid .node );
929
929
if (ts == NULL ) {
930
930
Assert (TransactionIdIsValid (x -> xid ));
931
931
ts = hash_search (MtmXid2State , & x -> xid , HASH_ENTER , NULL );
@@ -1380,7 +1380,7 @@ bool MtmRefreshClusterStatus(bool nowait)
1380
1380
for (ts = Mtm -> transListHead ; ts != NULL ; ts = ts -> next ) {
1381
1381
if (!ts -> votingCompleted ) {
1382
1382
if (ts -> status != TRANSACTION_STATUS_ABORTED ) {
1383
- MTM_LOG1 ("Rollback active transaction %d:%d" , ts -> gtid .node , ts -> gtid .xid );
1383
+ MTM_LOG1 ("1) Rollback active transaction %d:%d:%d " , ts -> gtid .node , ts -> gtid .xid , ts -> xid );
1384
1384
MtmAbortTransaction (ts );
1385
1385
}
1386
1386
MtmWakeUpBackend (ts );
@@ -1446,7 +1446,7 @@ void MtmOnNodeDisconnect(int nodeId)
1446
1446
for (ts = Mtm -> transListHead ; ts != NULL ; ts = ts -> next ) {
1447
1447
if (!ts -> votingCompleted ) {
1448
1448
if (ts -> status != TRANSACTION_STATUS_ABORTED ) {
1449
- MTM_LOG1 ("Rollback active transaction %d:%d" , ts -> gtid .node , ts -> gtid .xid );
1449
+ MTM_LOG1 ("2) Rollback active transaction %d:%d" , ts -> gtid .node , ts -> gtid .xid );
1450
1450
MtmAbortTransaction (ts );
1451
1451
}
1452
1452
MtmWakeUpBackend (ts );
0 commit comments