diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-28 15:19:44 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-28 15:19:44 +0100 |
commit | afad62939e071621666ca7255f7164f92c4475bb (patch) | |
tree | d1ce9b86b9082029e6df25470083c41bca12bbc9 /src/net/peering.rs | |
parent | 8bfc16ba7d5e0c2806aa32e0257fbdc21cb93860 (diff) | |
download | garage-afad62939e071621666ca7255f7164f92c4475bb.tar.gz garage-afad62939e071621666ca7255f7164f92c4475bb.zip |
[next-0.10] bump version number to 1.0v1.0.0-rc1
Diffstat (limited to 'src/net/peering.rs')
-rw-r--r-- | src/net/peering.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/peering.rs b/src/net/peering.rs index b4271231..168162d9 100644 --- a/src/net/peering.rs +++ b/src/net/peering.rs @@ -237,14 +237,13 @@ impl PeeringManager { ); known_hosts.update_hash(); - // TODO for v0.10 / v1.0 : rename the endpoint (it will break compatibility) let strat = Arc::new(Self { netapp: netapp.clone(), known_hosts: RwLock::new(known_hosts), public_peer_list: ArcSwap::new(Arc::new(Vec::new())), next_ping_id: AtomicU64::new(42), - ping_endpoint: netapp.endpoint("__netapp/peering/fullmesh.rs/Ping".into()), - peer_list_endpoint: netapp.endpoint("__netapp/peering/fullmesh.rs/PeerList".into()), + ping_endpoint: netapp.endpoint("garage_net/peering.rs/Ping".into()), + peer_list_endpoint: netapp.endpoint("garage_net/peering.rs/PeerList".into()), ping_timeout_millis: DEFAULT_PING_TIMEOUT_MILLIS.into(), }); |