diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index 0f51d87f..87525b87 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [3.2.1] - 2024-10-31 + +* Fix shared readiness notification + ## [3.2.0] - 2024-10-19 * Introduce `PipelineTag`, which allows to notify pipeline binding diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index eedc7549..86ef1147 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "3.2.0" +version = "3.2.1" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-service/src/ctx.rs b/ntex-service/src/ctx.rs index 93d3c979..c5223fdf 100644 --- a/ntex-service/src/ctx.rs +++ b/ntex-service/src/ctx.rs @@ -43,6 +43,7 @@ impl WaitersRef { } fn remove(&self, idx: usize) { + self.notify(); self.get().remove(idx); }