Remove deprecated heartbeat options

Cluster locking heartbeat options were marked deprecated in
42dafd2705 with the move to using
the tooz built in hearbeating. These options are now removed.

Note, in the release note for the deprecation we actually stated
these options were removed, not deprecated, so this patch does
not include an additional release note pointing this out.

Change-Id: Iae30e9263044a7ef04fbe5b826cfcc7aa41add5a
This commit is contained in:
Sean McGinnis 2017-10-03 14:33:38 -05:00
parent 68c668cfc8
commit b7f8005fa5
1 changed files with 0 additions and 25 deletions

View File

@ -33,31 +33,6 @@ coordination_opts = [
cfg.StrOpt('backend_url',
default='file://$state_path',
help='The backend URL to use for distributed coordination.'),
cfg.FloatOpt('heartbeat',
default=1.0,
help='Number of seconds between heartbeats for distributed '
'coordination. No longer used since distributed '
'coordination manages its heartbeat internally.',
deprecated_for_removal=True,
deprecated_reason='This option is no longer used.',
deprecated_since='11.0.0'),
cfg.FloatOpt('initial_reconnect_backoff',
default=0.1,
help='Initial number of seconds to wait after failed '
'reconnection. No longer used since distributed '
'coordination manages its heartbeat internally.',
deprecated_for_removal=True,
deprecated_reason='This option is no longer used.',
deprecated_since='11.0.0'),
cfg.FloatOpt('max_reconnect_backoff',
default=60.0,
help='Maximum number of seconds between sequential '
'reconnection retries. No longer used since '
'distributed coordination manages its heartbeat '
'internally.',
deprecated_for_removal=True,
deprecated_reason='This option is no longer used.',
deprecated_since='11.0.0'),
]
CONF = cfg.CONF