summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-04-21 11:29:55 +0000
committerGerrit Code Review <review@openstack.org>2020-04-21 11:29:55 +0000
commitb0cc9bad3ae4a5668c042ab17e8422eb999c039d (patch)
treea29fa608905dde4abc2ddcdf0d9d571a0e1ac6de
parentf1e448d6729f674101b34b08e3c5e95fd8f75770 (diff)
parentf0c81898e9663b593ac7805a6b82cd7bd7b73e40 (diff)
downloadnova-b0cc9bad3ae4a5668c042ab17e8422eb999c039d.tar.gz
Merge "Add missing white spaces between words in log messages"
-rw-r--r--nova/compute/api.py2
-rw-r--r--nova/virt/libvirt/driver.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py
index 89ff8f468f..7f68070885 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -2116,7 +2116,7 @@ class API(base.Base):
try:
self._update_queued_for_deletion(context, instance, True)
except exception.InstanceMappingNotFound:
- LOG.info("Instance Mapping does not exist while attempting"
+ LOG.info("Instance Mapping does not exist while attempting "
"local delete cleanup.",
instance=instance)
diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py
index b01d64b6ac..7b14dc2b95 100644
--- a/nova/virt/libvirt/driver.py
+++ b/nova/virt/libvirt/driver.py
@@ -6633,7 +6633,7 @@ class LibvirtDriver(driver.ComputeDriver):
# .format() can return IndexError
except (exception.PciDeviceWrongAddressFormat, IndexError):
# this is not a valid PCI address
- LOG.warning("The PCI address %s was invalid for getting the"
+ LOG.warning("The PCI address %s was invalid for getting the "
"related vGPU type", device_address)
return
try: