From 7ef7113bae23a0e859506e658a5dc9c8ebe04483 Mon Sep 17 00:00:00 2001 From: selias Date: Mon, 21 Nov 2016 17:15:38 +0100 Subject: [PATCH] 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 --- resources/libraries/python/InterfaceUtil.py | 2 -- 1 file changed, 2 deletions(-) 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 -- 2.16.6