remove default=None for config options

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

Change-Id: I5e19bf14514738f426fd72d25ff3c3a951398c24
Closes-bug: #1323975
This commit is contained in:
Hanxi 2016-08-23 00:39:38 +08:00
parent 858f55c287
commit 64011bb0da
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ OPTS = [
help='Number of notification messages to wait before '
'dispatching them.'),
cfg.IntOpt('batch_timeout',
default=None,
help='Number of seconds to wait before dispatching samples '
'when batch_size is not reached (None means indefinitely).'),
]

View File

@ -35,7 +35,6 @@ OPTS = [
help='Number of notification messages to wait before '
'dispatching them.'),
cfg.IntOpt('batch_timeout',
default=None,
help='Number of seconds to wait before dispatching samples '
'when batch_size is not reached (None means indefinitely).'
),