mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Fix shared readiness notification (#445)
This commit is contained in:
parent
5429eb7d24
commit
fc67031a3a
3 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [3.2.1] - 2024-10-31
|
||||||
|
|
||||||
|
* Fix shared readiness notification
|
||||||
|
|
||||||
## [3.2.0] - 2024-10-19
|
## [3.2.0] - 2024-10-19
|
||||||
|
|
||||||
* Introduce `PipelineTag`, which allows to notify pipeline binding
|
* Introduce `PipelineTag`, which allows to notify pipeline binding
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-service"
|
name = "ntex-service"
|
||||||
version = "3.2.0"
|
version = "3.2.1"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex service"
|
description = "ntex service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -43,6 +43,7 @@ impl WaitersRef {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn remove(&self, idx: usize) {
|
fn remove(&self, idx: usize) {
|
||||||
|
self.notify();
|
||||||
self.get().remove(idx);
|
self.get().remove(idx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue