Add missing ws separator between words

This is to add missing ws separator between words.

Change-Id: I1df1d4aa8f84fb20a509f8e7130f218cafef32a7
This commit is contained in:
zhufl 2018-11-21 16:04:19 +08:00
parent 057b2cf1fa
commit 80fe7595b9
6 changed files with 8 additions and 8 deletions

View File

@ -113,7 +113,7 @@ class VIFSriovDriver(object):
self._release() self._release()
continue continue
if not vf_names: if not vf_names:
LOG.debug("No interfaces in %s" LOG.debug("No interfaces in %s. "
"Skipping vf %s for pf %s", vf_sys_path, "Skipping vf %s for pf %s", vf_sys_path,
vf_index, pf) vf_index, pf)
self._release() self._release()

View File

@ -423,7 +423,7 @@ class NeutronVIFPool(BaseVIFPool):
def delete_network_pools(self, net_id): def delete_network_pools(self, net_id):
if not hasattr(self, '_available_ports_pools'): if not hasattr(self, '_available_ports_pools'):
LOG.info("Kuryr-controller not yet ready to delete network pools" LOG.info("Kuryr-controller not yet ready to delete network "
"pools.") "pools.")
raise exceptions.ResourceNotReady(net_id) raise exceptions.ResourceNotReady(net_id)
neutron = clients.get_neutron_client() neutron = clients.get_neutron_client()
@ -751,7 +751,7 @@ class NestedVIFPool(BaseVIFPool):
def delete_network_pools(self, net_id): def delete_network_pools(self, net_id):
if not hasattr(self, '_available_ports_pools'): if not hasattr(self, '_available_ports_pools'):
LOG.info("Kuryr-controller not yet ready to delete network pools" LOG.info("Kuryr-controller not yet ready to delete network "
"pools.") "pools.")
raise exceptions.ResourceNotReady(net_id) raise exceptions.ResourceNotReady(net_id)
neutron = clients.get_neutron_client() neutron = clients.get_neutron_client()