uncomment
Some checks failed
Run Check Script / check (pull_request) Failing after 1m3s

This commit is contained in:
Ian Letourneau 2025-11-04 15:28:53 -05:00
parent b5beda8efe
commit cab4eb19ed

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
}
}