Skip to content

Commit

Permalink
Fix shared readiness notification (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 authored Oct 31, 2024
1 parent 5429eb7 commit fc67031
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ntex-service/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ntex-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-service"
version = "3.2.0"
version = "3.2.1"
authors = ["ntex contributors <[email protected]>"]
description = "ntex service"
keywords = ["network", "framework", "async", "futures"]
Expand Down
1 change: 1 addition & 0 deletions ntex-service/src/ctx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ impl WaitersRef {
}

fn remove(&self, idx: usize) {
self.notify();
self.get().remove(idx);
}

Expand Down

0 comments on commit fc67031

Please sign in to comment.