Fix missing format specifier in ImagePropertiesFilter log message
Commit a52259e
introduced some changes to debug log messages in the
ImagePropertiesFilter but with that came a bug due to a missing format
specifier.
Closes-Bug: #1253875
Change-Id: Ic60b7ba179bd43b80c500be084a1809b6b0b32ca
This commit is contained in:
@@ -79,7 +79,7 @@ class ImagePropertiesFilter(filters.BaseHostFilter):
|
|||||||
if _compare_product_version(hypervisor_version, image_props):
|
if _compare_product_version(hypervisor_version, image_props):
|
||||||
LOG.debug(_("Instance properties %(image_props)s "
|
LOG.debug(_("Instance properties %(image_props)s "
|
||||||
"are satisfied by compute host hypervisor "
|
"are satisfied by compute host hypervisor "
|
||||||
"version %(hypervisor_version) and "
|
"version %(hypervisor_version)s and "
|
||||||
"supported instances %(supp_instances)s"),
|
"supported instances %(supp_instances)s"),
|
||||||
{'image_props': image_props,
|
{'image_props': image_props,
|
||||||
'supp_instances': supp_instances,
|
'supp_instances': supp_instances,
|
||||||
|
Reference in New Issue
Block a user