aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/system.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-01-16 14:04:11 +0100
committerAlex Auvolat <alex@adnab.me>2024-01-16 14:04:11 +0100
commit82a29bf6e5bf3f0d616b3214db02eb063d7a15b4 (patch)
treed2e1b706c14f3c3461218cc659cd5c59d201bea8 /src/rpc/system.rs
parent707d85f60293099e75e5aa821c0ee66796fdaa5b (diff)
downloadgarage-82a29bf6e5bf3f0d616b3214db02eb063d7a15b4.tar.gz
garage-82a29bf6e5bf3f0d616b3214db02eb063d7a15b4.zip
help, comments: make clear that full-length node ID = public key
Generally, avoid using the "public key" terminology
Diffstat (limited to 'src/rpc/system.rs')
-rw-r--r--src/rpc/system.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/system.rs b/src/rpc/system.rs
index 4b40bec4..4cec369b 100644
--- a/src/rpc/system.rs
+++ b/src/rpc/system.rs
@@ -57,7 +57,7 @@ pub const SYSTEM_RPC_PATH: &str = "garage_rpc/membership.rs/SystemRpc";
pub enum SystemRpc {
/// Response to successfull advertisements
Ok,
- /// Request to connect to a specific node (in <pubkey>@<host>:<port> format)
+ /// Request to connect to a specific node (in <pubkey>@<host>:<port> format, pubkey = full-length node ID)
Connect(String),
/// Ask other node its cluster layout. Answered with AdvertiseClusterLayout
PullClusterLayout,