Update image creation error msg to mention the correct image type
Currently, the glance_image_create method allows the ability to
create any type of image as specified in the [scenario] section
of tempest.conf. The error message when unable to find this image,
however, only mentions qcow, which can cause confusion for users
testing with other image types. This commit updates the error to
mention the image type configured in the conf and also issues the
log as a warning rather than a debug message.
Change-Id: Ia2e81da2ded351df5b53f36de278a3400d1b2605
diff --git a/tempest/scenario/manager.py b/tempest/scenario/manager.py
index e5e0d16..3ec6800 100644
--- a/tempest/scenario/manager.py
+++ b/tempest/scenario/manager.py
@@ -438,7 +438,9 @@
disk_format=img_disk_format,
properties=img_properties)
except IOError:
- LOG.debug("A qcow2 image was not found. Try to get a uec image.")
+ LOG.warning(
+ "A(n) %s image was not found. Retrying with uec image.",
+ img_disk_format)
kernel = self._image_create('scenario-aki', 'aki', aki_img_path)
ramdisk = self._image_create('scenario-ari', 'ari', ari_img_path)
properties = {'kernel_id': kernel, 'ramdisk_id': ramdisk}