X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2Fhoneycomb%2FHoneycombSetup.py;h=871ade6887685628264a40fa6c947d16f084e4ff;hb=refs%2Fchanges%2F02%2F6002%2F2;hp=858aa2134402e4b72a83f995ceb22dbccbde645f;hpb=bd680a762d945b7970f7e62b7ee47776f0301f8c;p=csit.git diff --git a/resources/libraries/python/honeycomb/HoneycombSetup.py b/resources/libraries/python/honeycomb/HoneycombSetup.py index 858aa21344..871ade6887 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-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)