You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (ts->status!=TRANSACTION_STATUS_ABORTED&& (!ts->votingCompleted||nConfigChanges!=Mtm->nConfigChanges)) {
929
+
if (nConfigChanges!=Mtm->nConfigChanges) {
930
+
elog(WARNING, "Transaction %d is aborted because cluster configuration is changed during commit", x->xid);
931
+
} else {
927
932
elog(WARNING, "Transaction %d is aborted because of %d msec timeout expiration, prepare time %d msec", x->xid, (int)transTimeout, (int)USEC_TO_MSEC(ts->csn-x->snapshot));
928
933
}
929
-
} elseif (nConfigChanges!=Mtm->nConfigChanges) {
930
934
MtmAbortTransaction(ts);
931
-
elog(WARNING, "Transaction %d is aborted because cluster configuration is changed during commit", x->xid);
932
935
}
933
936
x->status=ts->status;
934
937
MTM_LOG3("%d: Result of vote: %d", MyProcPid, ts->status);
0 commit comments