Default value for Backend start_health

This commit is contained in:
Nicolas Patry 2024-12-10 19:02:42 +01:00
parent e47249a3ea
commit de73eff07c
No known key found for this signature in database
GPG Key ID: D2920555C90F704C

View File

@ -37,7 +37,9 @@ pub trait Backend {
/// The state of the health on startup /// The state of the health on startup
/// Typically false, or true if the backend includes /// Typically false, or true if the backend includes
/// a warmup phase. /// a warmup phase.
fn start_health(&self) -> bool; fn start_health(&self) -> bool {
false
}
} }
/// Inference struct /// Inference struct