Fix shared readiness notification (#445)

This commit is contained in:
Nikolay Kim 2024-10-31 15:31:37 +05:00 committed by GitHub
parent 5429eb7d24
commit fc67031a3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-service"
version = "3.2.0"
version = "3.2.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex service"
keywords = ["network", "framework", "async", "futures"]

View file

@ -43,6 +43,7 @@ impl WaitersRef {
}
fn remove(&self, idx: usize) {
self.notify();
self.get().remove(idx);
}