refactor(host_network): extract NetworkManager as a reusable component #183

Merged
letian merged 11 commits from refactor-network-manager into master 2025-11-06 00:02:53 +00:00
4 changed files with 5 additions and 184 deletions
Showing only changes of commit cab4eb19ed - Show all commits

View File

@@ -546,8 +546,8 @@ impl Switch for HAClusterTopology {
}
async fn configure_host_network(&self, config: &HostNetworkConfig) -> Result<(), SwitchError> {
self.configure_bond(config).await
// self.configure_port_channel(config).await
self.configure_bond(config).await?;
self.configure_port_channel(config).await
}
}