nvazquez commented on code in PR #8906:
URL: https://github.com/apache/cloudstack/pull/8906#discussion_r1731457840
##########
plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/utils/NsxControllerUtils.java:
##########
@@ -124,6 +124,9 @@ public static String getServerPoolName(String
tier1GatewayName, long lbId) {
}
public static String getActiveMonitorProfileName(String lbServerPoolName,
String port, String protocol) {
+ if (protocol.equalsIgnoreCase("udp")) {
+ protocol = "ICMP";
+ }
Review Comment:
This was a workaround to an issue found while enabling maintenance on an NSX
edge node, after disabling maintenance the UDP load balancer wouldn't come up
again as the active monitor failed instantiating, so the workaround was
creating ICMP active monitors for UDP load balancers
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]