From cccb893cb175ad29c192abd5e406f6a2bfea18db Mon Sep 17 00:00:00 2001 From: selias Date: Mon, 15 Aug 2016 15:15:51 +0200 Subject: 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 --- resources/libraries/python/honeycomb/HcPersistence.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'resources/libraries/python/honeycomb') 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() -- cgit