ensure event handlers are properly subscribed on init, extract duplicated progress functions, cleanup duplication

This commit is contained in:
Ian Letourneau
2025-07-30 12:22:04 -04:00
parent 8fae9cf8c8
commit ff7801a7c1
14 changed files with 240 additions and 72 deletions

View File

@@ -13,8 +13,7 @@ use harmony_cli::cli_logger;
#[tokio::main]
async fn main() {
env_logger::init();
let cli_logger_handle = tokio::spawn(cli_logger::init());
let cli_logger_handle = cli_logger::init();
let topology = K8sAnywhereTopology::from_env();
let mut maestro = Maestro::initialize(Inventory::autoload(), topology)