File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1727,17 +1727,17 @@ static void MtmBroadcastPollMessage(MtmTransState* ts)
1727
1727
int i ;
1728
1728
MtmArbiterMessage msg ;
1729
1729
1730
- MTM_LOG1 ("MtmBroadcastPollMessage: %s %lld" , ts -> gid , ts -> participantsMask );
1731
1730
MtmInitMessage (& msg , MSG_POLL_REQUEST );
1732
1731
memcpy (msg .gid , ts -> gid , MULTIMASTER_MAX_GID_SIZE );
1733
1732
ts -> votedMask = 0 ;
1734
1733
1735
1734
for (i = 0 ; i < Mtm -> nAllNodes ; i ++ )
1736
1735
{
1737
- if (BIT_CHECK (ts -> participantsMask , i ))
1736
+ // if (BIT_CHECK(ts->participantsMask, i))
1737
+ if (i + 1 != MtmNodeId )
1738
1738
{
1739
1739
msg .node = i + 1 ;
1740
- MTM_LOG3 ( "Send request for transaction %s to node %d" , msg .gid , msg .node );
1740
+ MTM_LOG1 ( "Sending request for transaction %s to node %d" , msg .gid , msg .node );
1741
1741
MtmSendMessage (& msg );
1742
1742
}
1743
1743
}
You can’t perform that action at this time.
0 commit comments