summaryrefslogtreecommitdiff
path: root/neutron/conf
diff options
context:
space:
mode:
authorTobias Urdin <tobias.urdin@binero.com>2023-01-02 17:20:04 +0100
committerTobias Urdin <tobias.urdin@binero.se>2023-01-03 16:20:36 +0000
commit26da863ca629f5974121a2fae4107ca4e98e7322 (patch)
tree06ecca94ef74b7b4e93c5b9a6282cff048c70bb4 /neutron/conf
parente444d543ed5864b77072aea720854b4859a77dda (diff)
downloadneutron-26da863ca629f5974121a2fae4107ca4e98e7322.tar.gz
Remove deprecated opt keepalived_use_no_track
The keepalived_use_no_track config option is deprecated and it's determined by supported by a runtime check instead. Change-Id: Id85769f165684c9fcf67659dad485e1ecc12331f
Diffstat (limited to 'neutron/conf')
-rw-r--r--neutron/conf/agent/l3/config.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/neutron/conf/agent/l3/config.py b/neutron/conf/agent/l3/config.py
index 1983529e88..8e5c961685 100644
--- a/neutron/conf/agent/l3/config.py
+++ b/neutron/conf/agent/l3/config.py
@@ -107,17 +107,6 @@ OPTS = [
'the state change monitor. NOTE: Setting to True '
'could affect the data plane when stopping or '
'restarting the L3 agent.')),
- cfg.BoolOpt('keepalived_use_no_track',
- default=True,
- deprecated_for_removal=True,
- deprecated_reason='By keepalived version detection introduced '
- 'by https://review.opendev.org/757620 there '
- 'is no need for this config option. To be '
- 'removed in X.',
- help=_('If keepalived without support for "no_track" option '
- 'is used, this should be set to False. '
- 'Support for this option was introduced in keepalived '
- '2.x'))
]