remove default=None for config options

In the cfg module default=None is set as the default value.

Change-Id: Id903af41b522e56aec6bb0b885ad57244499c42f
Closes-bug: #1323975
This commit is contained in:
Shuquan Huang 2015-11-08 11:18:08 +08:00
parent 959525df52
commit da491798bb
1 changed files with 3 additions and 3 deletions

View File

@ -39,11 +39,11 @@ core_opts = [
help='Sets the value of TCP_KEEPIDLE in seconds for each '
'server socket. Only applies if tcp_keepalive is '
'true. Not supported on OS X.'),
cfg.StrOpt('policy_path', default=None,
cfg.StrOpt('policy_path',
help="The path to the latest policy dump"),
cfg.StrOpt('datasource_file', default=None,
cfg.StrOpt('datasource_file',
help="The file containing datasource configuration"),
cfg.StrOpt('root_path', default=None,
cfg.StrOpt('root_path',
help="The absolute path to the congress repo"),
cfg.IntOpt('api_workers', default=1,
help='The number of worker processes to serve the congress '