Merge "Add missing ws separator between words"
This commit is contained in:
commit
b2de7d691c
@ -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)
|
||||
|
@ -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',
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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 '
|
||||
|
@ -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"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user