Compare commits

..

1 Commits

Author SHA1 Message Date
7fe15ffa24 remove unnecessary println
All checks were successful
Run Check Script / check (pull_request) Successful in 1m13s
2025-11-05 13:26:34 -05:00

View File

@@ -77,12 +77,12 @@ impl HostNetworkConfigurationInterpret {
topology.configure_bond(&config).await.map_err(|e| {
InterpretError::new(format!("Failed to configure host network: {e}"))
})?;
// topology
// .configure_port_channel(&config)
// .await
// .map_err(|e| {
// InterpretError::new(format!("Failed to configure host network: {e}"))
// })?;
topology
.configure_port_channel(&config)
.await
.map_err(|e| {
InterpretError::new(format!("Failed to configure host network: {e}"))
})?;
} else if config.switch_ports.is_empty() {
info!(
"[Host {current_host}/{total_hosts}] No ports found for {} interfaces, skipping",