mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
Raft tracepoint at election completion
This commit is contained in:
parent
d623eee54a
commit
706e72cc74
@ -165,6 +165,7 @@ class RaftCore : private TimerBase
|
||||
|
||||
if (num_votes_received_in_this_campaign_ > 0)
|
||||
{
|
||||
trace(TraceRaftElectionComplete, num_votes_received_in_this_campaign_);
|
||||
const bool won = num_votes_received_in_this_campaign_ >= cluster_.getQuorumSize();
|
||||
|
||||
UAVCAN_TRACE("dynamic_node_id_server::distributed::RaftCore", "Election complete, won: %d", int(won));
|
||||
|
||||
@ -51,7 +51,7 @@ enum TraceCode
|
||||
TraceRaftNewEntryCommitted, // new commit index value
|
||||
// 25
|
||||
TraceRaftAppendEntriesCallFailure, // error code (may be negated)
|
||||
Trace0,
|
||||
TraceRaftElectionComplete, // number of votes collected
|
||||
Trace1,
|
||||
Trace2,
|
||||
Trace3,
|
||||
@ -126,7 +126,7 @@ public:
|
||||
"RaftNewerTermInResponse",
|
||||
"RaftNewEntryCommitted",
|
||||
"RaftAppendEntriesCallFailure",
|
||||
"",
|
||||
"RaftElectionComplete",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
@ -138,7 +138,7 @@ public:
|
||||
"AllocationRequestAccepted",
|
||||
"AllocationExchangeComplete",
|
||||
"AllocationResponse",
|
||||
"",
|
||||
"AllocationActivity",
|
||||
"",
|
||||
"DiscoveryNewNodeFound",
|
||||
"DiscoveryCommitCacheUpdated",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user