fix(host_network): remove extra fields from bond config to prevent clashes #186

Merged
letian merged 14 commits from fix-bond-config into master 2025-11-11 14:12:57 +00:00
12 changed files with 350 additions and 800 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
}
}