fix: Correct typo in error message

Signed-off-by: kumy <kumy@users.noreply.github.com>
This commit is contained in:
kumy
2025-12-03 13:13:46 +01:00
committed by GitHub
parent 19c48ee826
commit b56d077034

View File

@@ -247,7 +247,7 @@ func (n *Network) rmLBBackend(ip net.IP, lb *loadBalancer, rmService bool, fullR
}
err := sb.osSbox.RemoveAliasIP(ifName, &net.IPNet{IP: lb.vip, Mask: net.CIDRMask(32, 32)})
if err != nil {
log.G(context.TODO()).Errorf("Failed add IP alias %s to network %s LB endpoint interface %s: %v", lb.vip, n.ID(), ifName, err)
log.G(context.TODO()).Errorf("Failed to remove IP alias %s from network %s LB endpoint interface %s: %v", lb.vip, n.ID(), ifName, err)
}
}
}