Removed two previously unused config options

The following unused configuration options were removed.
- periodic_interval_max
- periodic_fuzzy_delay

Change-Id: Ifbd520a88156ec52a1f998b0b7fae4db27a3debb
This commit is contained in:
Erik Olof Gunnar Andersson 2022-05-16 19:19:38 -07:00
parent e0f5802fa4
commit 9e70dd30e8
1 changed files with 0 additions and 8 deletions

View File

@ -35,20 +35,12 @@ ENGINE_OPTS = [
cfg.IntOpt('periodic_interval',
default=60,
help=_('Seconds between running periodic tasks.')),
cfg.IntOpt('periodic_interval_max',
default=120,
help=_('Maximum seconds between periodic tasks to be called.')),
cfg.IntOpt('check_interval_max',
default=3600,
help=_('Maximum seconds between cluster check to be called.')),
cfg.IntOpt('health_check_interval_min',
default=60,
help=_('Minimum seconds between health check to be called.')),
cfg.IntOpt('periodic_fuzzy_delay',
default=10,
help=_('Range of seconds to randomly delay when starting the '
'periodic task scheduler to reduce stampeding. '
'(Disable by setting to 0)')),
cfg.StrOpt('environment_dir',
default='/etc/senlin/environments',
help=_('The directory to search for environment files.')),