Removing unnecessary config definition

The configuration module already defines the default value as None
There's no need to set it again on the configuration options
definition

Change-Id: I72cc503c2b24d597f7acecf7b5853a2627775970
Closes-Bug: #1680492
This commit is contained in:
Leticia Wanderley 2017-04-06 23:17:04 -03:00
parent 169fc6fb8b
commit 45a9de786e
7 changed files with 0 additions and 8 deletions

View File

@ -97,7 +97,6 @@ service_client_opts = [
'values are: public, admin, internal.'),
cfg.StrOpt('ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),

View File

@ -30,7 +30,6 @@ cinder_client_opts = [
'<service_type>:<service_name>:<endpoint_type> - '
'Only used if cinder_endpoint is unset'),
cfg.StrOpt(SERVICE + '_ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),
cfg.BoolOpt(SERVICE + '_auth_insecure',

View File

@ -26,10 +26,8 @@ eisoo_client_opts = [
cfg.StrOpt(SERVICE + '_endpoint',
help='URL of the eisoo endpoint.'),
cfg.StrOpt(SERVICE + '_app_id',
default=None,
help='App id for eisoo authentication.'),
cfg.StrOpt(SERVICE + '_app_secret',
default=None,
help='App secret for eisoo authenticaiton.'),
]

View File

@ -30,7 +30,6 @@ glance_client_opts = [
'<service_type>:<service_name>:<endpoint_type> - '
'Only used if glance_endpoint is unset'),
cfg.StrOpt(SERVICE + '_ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),
cfg.BoolOpt(SERVICE + '_auth_insecure',

View File

@ -34,7 +34,6 @@ heat_client_opts = [
'<service_type>:<service_name>:<endpoint_type> - '
'Only used if cinder_endpoint is unset'),
cfg.StrOpt(SERVICE + '_ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),
cfg.BoolOpt(SERVICE + '_auth_insecure',

View File

@ -30,7 +30,6 @@ neutron_client_opts = [
'<service_type>:<service_name>:<endpoint_type> - '
'Only used if neutron_endpoint is unset'),
cfg.StrOpt(SERVICE + '_ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),
cfg.BoolOpt(SERVICE + '_auth_insecure',

View File

@ -32,7 +32,6 @@ nova_client_opts = [
'<service_type>:<service_name>:<endpoint_type> - '
'Only used if nova_endpoint is unset'),
cfg.StrOpt(SERVICE + '_ca_cert_file',
default=None,
help='Location of the CA certificate file '
'to use for client requests in SSL connections.'),
cfg.BoolOpt(SERVICE + '_auth_insecure',