Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
Merge cb0b506 into 033a283
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel-faber committed Jun 9, 2021
2 parents 033a283 + cb0b506 commit 3a3386f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/node/variant.rs
Expand Up @@ -93,6 +93,9 @@ pub enum Variant {
content: Proposal,
signed_share: SignedShare,
},
/// Message that notifies a section to test
/// the connectivity to a node
StartConnectivityTest(XorName),
/// Message sent by a node to indicate it received a message from a node which was ahead in knowledge.
/// A reply is expected with a `SectionKnowledge` message.
SectionKnowledgeQuery {
Expand Down Expand Up @@ -123,6 +126,7 @@ impl Debug for Variant {
)
.finish(),
Self::Relocate(payload) => write!(f, "Relocate({:?})", payload),
Self::StartConnectivityTest(name) => write!(f, "StartConnectivityTest({:?})", name),
Self::RelocatePromise(payload) => write!(f, "RelocatePromise({:?})", payload),
Self::JoinRequest(payload) => write!(f, "JoinRequest({:?})", payload),
Self::JoinResponse(response) => write!(f, "JoinResponse({:?})", response),
Expand Down

0 comments on commit 3a3386f

Please sign in to comment.