From 5ca0a28f3bf7fe2e5eb484523a5a5e2907514080 Mon Sep 17 00:00:00 2001 From: Paul Loyd Date: Tue, 7 Nov 2023 10:29:42 +0400 Subject: [PATCH] docs(CHANGELOG): note about #116 --- CHANGELOG.md | 5 ++++- elfo-core/src/topology.rs | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1dd4d1..b68c0e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +### Fixed +- network: unrouted requests don't lead to infinite waiting anymore ([#116]). + +[#116]: https://github.com/elfo-rs/elfo/pull/116 ## [0.2.0-alpha.10] - 2023-10-11 ### Added @@ -72,7 +76,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#102]: https://github.com/elfo-rs/elfo/pull/102 ## [0.2.0-alpha.4] - 2023-07-06 - ### Fixed - configurer: fix data race with empty mailbox ([#97]) diff --git a/elfo-core/src/topology.rs b/elfo-core/src/topology.rs index 91511b8a..2cc27ddb 100644 --- a/elfo-core/src/topology.rs +++ b/elfo-core/src/topology.rs @@ -473,7 +473,6 @@ cfg_network!({ // Nothing for now, reserved for future use. pub struct NodeDiscovery(()); - // TODO: should undo register_remote in drop #[stability::unstable] pub struct RegisterRemoteGroupGuard<'a> { book: &'a AddressBook,