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

@ -38,7 +38,7 @@ class BaseBridgeDriver(health.HealthHandler, b_base.BaseBindingDriver):
# connect for this iface and there's a leftover # connect for this iface and there's a leftover
# host-side vif. Let's remove it, its peer should # host-side vif. Let's remove it, its peer should
# get deleted automatically by the kernel. # get deleted automatically by the kernel.
LOG.debug('Found leftover host vif %s. Removing it before' LOG.debug('Found leftover host vif %s. Removing it before '
'connecting.', host_ifname) 'connecting.', host_ifname)
with h_ipdb.interfaces[host_ifname] as h_iface: with h_ipdb.interfaces[host_ifname] as h_iface:
h_iface.remove() h_iface.remove()

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

@ -37,7 +37,7 @@ cni_health_server_opts = [
default=-1), default=-1),
cfg.StrOpt( cfg.StrOpt(
'cg_path', 'cg_path',
help=_('sysfs path to the CNI cgroup. This is used for resource' help=_('sysfs path to the CNI cgroup. This is used for resource '
'tracking and as such should point to the cgroup hierarchy ' 'tracking and as such should point to the cgroup hierarchy '
'leaf. It only applies when non containerized'), 'leaf. It only applies when non containerized'),
default='/sys/fs/cgroup/memory/system.slice/kuryr-cni.service') default='/sys/fs/cgroup/memory/system.slice/kuryr-cni.service')

View File

@ -62,7 +62,7 @@ daemon_opts = [
help=_('Set to True when you are running kuryr-daemon inside ' help=_('Set to True when you are running kuryr-daemon inside '
'a Docker container on Kubernetes host. E.g. as ' 'a Docker container on Kubernetes host. E.g. as '
'DaemonSet on Kubernetes cluster Kuryr is supposed to ' 'DaemonSet on Kubernetes cluster Kuryr is supposed to '
'provide networking for. This mainly means that' 'provide networking for. This mainly means that '
'kuryr-daemon will look for network namespaces in ' 'kuryr-daemon will look for network namespaces in '
'$netns_proc_dir instead of /proc.'), '$netns_proc_dir instead of /proc.'),
default=False), default=False),
@ -181,7 +181,7 @@ k8s_opts = [
help=_("Driver for network policies"), help=_("Driver for network policies"),
default='default'), default='default'),
cfg.ListOpt('multi_vif_drivers', cfg.ListOpt('multi_vif_drivers',
help=_("The drivers that provide additional VIFs for" help=_("The drivers that provide additional VIFs for "
"Kubernetes Pods."), "Kubernetes Pods."),
default='noop'), default='noop'),
] ]

View File

@ -208,7 +208,7 @@ class NestedVlanPodVIFDriver(nested_vif.NestedPodVIFDriver):
raise ex raise ex
except n_exc.NeutronClientException as ex: except n_exc.NeutronClientException as ex:
LOG.error("Error happened during subport" LOG.error("Error happened during subport "
"addition to trunk, %s", trunk_id) "addition to trunk, %s", trunk_id)
raise ex raise ex
return vlan_id return vlan_id

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()