mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Do not rely on not_ready(), always check service readiness (#459)
This commit is contained in:
parent
9bf6f3111d
commit
0a376457f1
5 changed files with 19 additions and 29 deletions
|
@ -124,6 +124,8 @@ pub trait Service<Req> {
|
|||
/// Unlike the "ready()" method, the "not_ready()" method returns
|
||||
/// only when the service becomes unready. This method is intended
|
||||
/// for actively monitoring and maintaining the service state.
|
||||
///
|
||||
/// "not_ready()" implementation is optional.
|
||||
async fn not_ready(&self) {
|
||||
std::future::pending().await
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue