summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhelenyao <yaohelan@huawei.com>2017-05-22 16:21:11 +0800
committerhelenyao <yaohelan@huawei.com>2017-05-22 16:22:40 +0800
commitf27dee492379404be1570c37a2c76bdbe234abc4 (patch)
tree4e62bd96c333eef07501aba8c9d557a249844ae8
parent510ce10d0c31251a565af9c554918aeccf871382 (diff)
Fix the wrong image path for base image
The images are put under new directory while the code is still using old path Change-Id: I6dfa59ffe6bde316f155560449979bd10354b43c Signed-off-by: helenyao <yaohelan@huawei.com>
-rw-r--r--sdnvpn/lib/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdnvpn/lib/config.py b/sdnvpn/lib/config.py
index 3195d9a..f845f72 100644
--- a/sdnvpn/lib/config.py
+++ b/sdnvpn/lib/config.py
@@ -37,7 +37,7 @@ class CommonConfig(object):
"defaults.flavor", self.config_file)
self.image_filename = CONST.openstack_image_file_name
self.image_format = CONST.openstack_image_disk_format
- self.image_path = '{0}/{1}'.format(CONST.dir_functest_data,
+ self.image_path = '{0}/{1}'.format(CONST.dir_functest_images,
self.image_filename)
# This is the ubuntu image used by sfc
# Basically vanilla ubuntu + some scripts in there