Do not rely on not_ready(), always check service readiness (#459)

This commit is contained in:
Nikolay Kim 2024-11-05 15:35:34 +05:00 committed by GitHub
parent 9bf6f3111d
commit 0a376457f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 29 deletions

View file

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