We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent92415ab commitcb86819Copy full SHA for cb86819
multimaster.c
@@ -3725,8 +3725,8 @@ bool MtmFilterTransaction(char* record, int size)
3725
}
3726
restart_lsn=origin_node==MtmReplicationNodeId ?end_lsn :origin_lsn;
3727
if (Mtm->nodes[origin_node-1].restartLSN<restart_lsn) {
3728
-Assert(Mtm->nodes[origin_node-1].restartLSN==INVALID_LSN
3729
-||restart_lsn<Mtm->nodes[origin_node-1].restartLSN+MtmMaxRecoveryLag);
+//Assert(Mtm->nodes[origin_node-1].restartLSN == INVALID_LSN
+// || restart_lsn < Mtm->nodes[origin_node-1].restartLSN + MtmMaxRecoveryLag);
3730
MTM_LOG2("[restartlsn] node %d: %llx -> %llx (MtmFilterTransaction)",MtmReplicationNodeId,Mtm->nodes[MtmReplicationNodeId-1].restartLSN,restart_lsn);
3731
Mtm->nodes[origin_node-1].restartLSN=restart_lsn;
3732
}else {