From: selias Date: Mon, 21 Nov 2016 16:15:38 +0000 (+0100) Subject: Remove workaround for ip_address_dump X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=7ef7113bae23a0e859506e658a5dc9c8ebe04483 Remove workaround for ip_address_dump As of change https://gerrit.fd.io/r/3816, ip_address_dump returns IP addresses properly. Change-Id: If3b4a32e5166bd517beaa2ddb35262c406b1dcea Signed-off-by: selias --- diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py index 6c763134f4..0447ba5b15 100644 --- a/resources/libraries/python/InterfaceUtil.py +++ b/resources/libraries/python/InterfaceUtil.py @@ -262,8 +262,6 @@ class InterfaceUtil(object): for item in data: item["netmask"] = convert_ipv4_netmask_prefix( item["prefix_length"]) - # VAT returns addresses with reversed byte order (VPP-132) - item["ip"] = ".".join(item["ip"].split(".")[::-1]) return data @staticmethod