Merge "Fix padding logic for UDP health daemon"
This commit is contained in:
commit
2cf00d8c85
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user