mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Disconnect on error from service readiness check (#437)
This commit is contained in:
parent
5a907c8ed8
commit
4f7d951f40
5 changed files with 8 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.7.1] - 2024-10-15
|
||||
|
||||
* Disconnect on error from service readiness check
|
||||
|
||||
## [2.7.0] - 2024-10-10
|
||||
|
||||
* Do not check readiness for dispatcher call
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-io"
|
||||
version = "2.7.0"
|
||||
version = "2.7.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Utilities for encoding and decoding frames"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -521,7 +521,7 @@ where
|
|||
self.st = DispatcherState::Stop;
|
||||
self.error = Some(err);
|
||||
self.flags.insert(Flags::READY_ERR);
|
||||
Poll::Ready(PollService::Continue)
|
||||
Poll::Ready(PollService::Item(DispatchItem::Disconnect(None)))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue