Merge "Fix padding logic for UDP health daemon"

This commit is contained in:
Zuul 2020-03-23 03:16:56 +00:00 committed by Gerrit Code Review
commit 2cf00d8c85

View File

@ -72,7 +72,7 @@ def get_listener_realserver_mapping(ns_name, listener_ip_port,
ip_obj = ipaddress.ip_address(listener_ip.strip('[]'))
output = read_kernel_file(ns_name, KERNEL_LVS_PATH).split('\n')
if ip_obj.version == 4:
ip_to_hex_format = "0%X" % ip_obj._ip
ip_to_hex_format = "%.8X" % ip_obj._ip
else:
ip_to_hex_format = r'\[' + ip_obj.exploded + r'\]'
port_hex_format = "%.4X" % int(listener_port)