aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/honeycomb/HcPersistence.py
diff options
context:
space:
mode:
authorselias <samelias@cisco.com>2016-08-15 15:15:51 +0200
committerMatej Klotton <mklotton@cisco.com>2016-08-23 11:53:03 +0000
commitcccb893cb175ad29c192abd5e406f6a2bfea18db (patch)
tree5ac31afb7f0da5fefa275f12ca926a0bb12c21fb /resources/libraries/python/honeycomb/HcPersistence.py
parent345cd09bbbe57514f59d686a0338b672a786eba3 (diff)
CSIT-369 Update Honeycomb persistence data location
- update persistence cleanup method with new file path - remove unnecessary test case for bvi in multiple bridge domains - remove unused bridge domain keywords Change-Id: Ib5378f47af4a03ec5663a79db4c0dc1bf054c557 Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries/python/honeycomb/HcPersistence.py')
-rw-r--r--resources/libraries/python/honeycomb/HcPersistence.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/libraries/python/honeycomb/HcPersistence.py b/resources/libraries/python/honeycomb/HcPersistence.py
index adb55f5477..4d192525d8 100644
--- a/resources/libraries/python/honeycomb/HcPersistence.py
+++ b/resources/libraries/python/honeycomb/HcPersistence.py
@@ -40,8 +40,7 @@ class HcPersistence(object):
:type nodes: list
:raises HoneycombError: If persisted configuration could not be removed.
"""
- cmd = "rm {0}/etc/opendaylight/honeycomb/*".format(
- Const.REMOTE_HC_DIR)
+ cmd = "rm {0}/data/persistence/honeycomb/*".format(Const.REMOTE_HC_DIR)
for node in nodes:
if node['type'] == NodeType.DUT:
ssh = SSH()