Merge "TrivialFix: Remove default=None when set value in Config"

This commit is contained in:
Jenkins 2016-10-27 11:06:31 +00:00 committed by Gerrit Code Review
commit bd58d1295e
2 changed files with 0 additions and 3 deletions

View File

@ -50,7 +50,6 @@ store_opts = [
' backend support. Default is False')
),
cfg.ListOpt('stores_lookup_suffix',
default=None,
help=u._('List of suffix to use for looking up plugins which '
'are supported with multiple backend support.')
)

View File

@ -51,12 +51,10 @@ def read_multiple_backends_config():
name=group_name, title='Plugins needed for this backend')
store_opts = [
cfg.StrOpt('secret_store_plugin',
default=None,
help=u._('Internal name used to identify'
'secretstore_plugin')
),
cfg.StrOpt('crypto_plugin',
default=None,
help=u._('Internal name used to identify '
'crypto_plugin.')
),