From fdb655956844979145ef8cf1c455ee336c41b437 Mon Sep 17 00:00:00 2001 From: selias Date: Fri, 31 Mar 2017 11:47:53 +0200 Subject: HC Test: revert to using restconf over http - use http instead of https for restconf connection - add missing import to proxyARP robot library - use VAT interface dump to identify interfaces in VAT ip address dump Change-Id: Ic381ff3f9b56a6c633382450559134f5389956c2 Signed-off-by: selias --- resources/libraries/python/honeycomb/HoneycombSetup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'resources/libraries/python/honeycomb') diff --git a/resources/libraries/python/honeycomb/HoneycombSetup.py b/resources/libraries/python/honeycomb/HoneycombSetup.py index 858aa21344..52257bf1d0 100644 --- a/resources/libraries/python/honeycomb/HoneycombSetup.py +++ b/resources/libraries/python/honeycomb/HoneycombSetup.py @@ -239,13 +239,13 @@ class HoneycombSetup(object): :raises HoneycombError: If the configuration could not be changed. """ - find = "restconf-https-binding-address" + find = "restconf-http-binding-address" try: IPv6Address(unicode(node["host"])) # if management IP of the node is in IPv6 format - replace = '\\"restconf-https-binding-address\\": \\"0::0\\",' + replace = '\\"restconf-binding-address\\": \\"0::0\\",' except (AttributeError, AddressValueError): - replace = '\\"restconf-https-binding-address\\": \\"0.0.0.0\\",' + replace = '\\"restconf-binding-address\\": \\"0.0.0.0\\",' argument = '"/{0}/c\\ {1}"'.format(find, replace) path = "{0}/config/honeycomb.json".format(Const.REMOTE_HC_DIR) -- cgit 1.2.3-korg