breaking: Rename Maestro::new to Maestro::new_without_initialization. This improves UX as it makes it more obvious to users that this method should rarely be used

This commit is contained in:
2025-07-02 17:47:23 -04:00
parent a4aa685a4f
commit 6371009c6f
5 changed files with 15 additions and 8 deletions

View File

@@ -153,7 +153,7 @@ mod test {
fn init_test_maestro() -> Maestro<HAClusterTopology> {
let inventory = Inventory::autoload();
let topology = HAClusterTopology::autoload();
let mut maestro = Maestro::new(inventory, topology);
let mut maestro = Maestro::new_without_initialization(inventory, topology);
maestro.register_all(vec![
Box::new(SuccessScore {}),