Add missing ws separator between words

This is to add missing ws separator between words.

Change-Id: I311cabbbc8cf95dbceb7d194b6e742f2e1d91589
This commit is contained in:
zhufl 2018-11-21 11:14:25 +08:00
parent 4f99c6be22
commit 2cf1187aeb
11 changed files with 20 additions and 20 deletions

View File

@ -192,7 +192,7 @@ class BaseTaskFlowActionContainer(flow_task.Task):
fields.NotificationPhase.END)
except Exception as e:
LOG.exception(e)
LOG.error('The workflow engine has failed'
LOG.error('The workflow engine has failed '
'to execute the action: %s', self.name)
db_action = self.engine.notify(self._db_action,
objects.action.State.FAILED)

View File

@ -19,7 +19,7 @@
from oslo_config import cfg
watcher_applier = cfg.OptGroup(name='watcher_applier',
title='Options for the Applier messaging'
title='Options for the Applier messaging '
'core')
APPLIER_MANAGER_OPTS = [
@ -30,7 +30,7 @@ APPLIER_MANAGER_OPTS = [
help='Number of workers for applier, default value is 1.'),
cfg.StrOpt('conductor_topic',
default='watcher.applier.control',
help='The topic name used for'
help='The topic name used for '
'control events, this topic '
'used for rpc call '),
cfg.StrOpt('publisher_id',

View File

@ -28,8 +28,8 @@ CEILOMETER_CLIENT_OPTS = [
'ceilometerclient.'),
cfg.StrOpt('endpoint_type',
default='internalURL',
help='Type of endpoint to use in ceilometerclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in ceilometerclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is internalURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ CINDER_CLIENT_OPTS = [
help='Version of Cinder API to use in cinderclient.'),
cfg.StrOpt('endpoint_type',
default='publicURL',
help='Type of endpoint to use in cinderclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in cinderclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is publicURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ GLANCE_CLIENT_OPTS = [
help='Version of Glance API to use in glanceclient.'),
cfg.StrOpt('endpoint_type',
default='publicURL',
help='Type of endpoint to use in glanceclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in glanceclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is publicURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ GNOCCHI_CLIENT_OPTS = [
help='Version of Gnocchi API to use in gnocchiclient.'),
cfg.StrOpt('endpoint_type',
default='public',
help='Type of endpoint to use in gnocchi client.'
'Supported values: internal, public, admin'
help='Type of endpoint to use in gnocchi client. '
'Supported values: internal, public, admin. '
'The default is public.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ IRONIC_CLIENT_OPTS = [
help='Version of Ironic API to use in ironicclient.'),
cfg.StrOpt('endpoint_type',
default='publicURL',
help='Type of endpoint to use in ironicclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in ironicclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is publicURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ MONASCA_CLIENT_OPTS = [
help='Version of Monasca API to use in monascaclient.'),
cfg.StrOpt('interface',
default='internal',
help='Type of interface used for monasca endpoint.'
'Supported values: internal, public, admin'
help='Type of interface used for monasca endpoint. '
'Supported values: internal, public, admin. '
'The default is internal.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ NEUTRON_CLIENT_OPTS = [
help='Version of Neutron API to use in neutronclient.'),
cfg.StrOpt('endpoint_type',
default='publicURL',
help='Type of endpoint to use in neutronclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in neutronclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is publicURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -27,8 +27,8 @@ NOVA_CLIENT_OPTS = [
help='Version of Nova API to use in novaclient.'),
cfg.StrOpt('endpoint_type',
default='publicURL',
help='Type of endpoint to use in novaclient.'
'Supported values: internalURL, publicURL, adminURL'
help='Type of endpoint to use in novaclient. '
'Supported values: internalURL, publicURL, adminURL. '
'The default is publicURL.'),
cfg.StrOpt('region_name',
help='Region in Identity service catalog to use for '

View File

@ -89,7 +89,7 @@ class ZoneMigration(base.ZoneMigrationBaseStrategy):
"type": "string"
},
"dst_node": {
"description": "Compute node to which"
"description": "Compute node to which "
"instances migrate",
"type": "string"
}