From 836341027030bcb12973cb91f7d1dbdfdb3317d7 Mon Sep 17 00:00:00 2001 From: Kerim Gokarslan Date: Thu, 14 Sep 2017 20:17:41 -0700 Subject: NFVBENCH-27 Search vm image under project folder Change-Id: I0d9c148e868fbcd665734eb92ac5c182693c3c67 Signed-off-by: Kerim Gokarslan --- nfvbench/compute.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'nfvbench/compute.py') diff --git a/nfvbench/compute.py b/nfvbench/compute.py index 681a852..5806164 100644 --- a/nfvbench/compute.py +++ b/nfvbench/compute.py @@ -51,9 +51,7 @@ class Compute(object): retry = 0 try: # check image is file/url based. - file_prefix = "file://" - image_location = image_file.split(file_prefix)[1] - with open(image_location) as f_image: + with open(image_file) as f_image: img = self.glance_client.images.create(name=str(final_image_name), disk_format="qcow2", container_format="bare", @@ -82,8 +80,7 @@ class Compute(object): return False except Exception: LOG.error(traceback.format_exc()) - LOG.error("Failed while uploading the image, please make sure the " - "cloud under test has the access to file: %s.", image_file) + LOG.error("Failed to upload image %s.", image_file) return False return True -- cgit 1.2.3-korg