diff options
author | selias <samelias@cisco.com> | 2017-03-07 17:45:16 +0100 |
---|---|---|
committer | selias <samelias@cisco.com> | 2017-03-15 12:43:56 +0100 |
commit | 38722703b8ca56a334c6fc77b2cfab9d16c978f9 (patch) | |
tree | 330952127b52b5703f84a39c42f0531844f7fcef /resources/libraries/python | |
parent | 0b4ceb8d40f0b667eb6083298a4f133b8ae9adaa (diff) |
HC Test: update URL paths for vpp-acl
- needed due to v3po model split https://gerrit.fd.io/r/5530
Change-Id: I8a82c22f1999e81e3bb19b287be3cf3c01b50333
Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries/python')
-rw-r--r-- | resources/libraries/python/honeycomb/HcAPIKwInterfaces.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/honeycomb/HcAPIKwInterfaces.py b/resources/libraries/python/honeycomb/HcAPIKwInterfaces.py index eff0719e26..3351ebf5d3 100644 --- a/resources/libraries/python/honeycomb/HcAPIKwInterfaces.py +++ b/resources/libraries/python/honeycomb/HcAPIKwInterfaces.py @@ -1476,7 +1476,7 @@ class InterfaceKeywords(object): interface = interface.replace("/", "%2F") data = { - "v3po:acl": { + "vpp-interface-acl:acl": { "ingress": { "ip4-acl": { "classify-table": table_name @@ -1488,7 +1488,7 @@ class InterfaceKeywords(object): } } - path = "/interface/" + interface + "/v3po:acl" + path = "/interface/" + interface + "/vpp-interface-acl:acl" status_code, resp = HcUtil.\ put_honeycomb_data(node, "config_vpp_interfaces", data, path, data_representation=DataRepresentation.JSON) @@ -1514,7 +1514,7 @@ class InterfaceKeywords(object): interface = interface.replace("/", "%2F") - path = "/interface/" + interface + "/v3po:acl" + path = "/interface/" + interface + "/vpp-interface-acl:acl" status_code, resp = HcUtil.\ delete_honeycomb_data(node, "config_vpp_interfaces", path) |