L3-HA: remove unused deprecated code

Commit 2823c2e569 added the
deprecation warning but no one uses the code. So the unused code is
deleted.

Change-Id: I22d96182a7c88f725d19559c25f1820a8fb176f2
This commit is contained in:
Gary Kotton 2016-11-06 04:33:55 -08:00
parent 29669c04dd
commit 0e8b32b03b
1 changed files with 0 additions and 7 deletions

View File

@ -13,7 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import debtcollector
import os
import eventlet
@ -23,18 +22,12 @@ import webob
from neutron._i18n import _LI
from neutron.agent.linux import utils as agent_utils
from neutron.conf.agent.l3 import ha as ha_conf
from neutron.notifiers import batch_notifier
LOG = logging.getLogger(__name__)
KEEPALIVED_STATE_CHANGE_SERVER_BACKLOG = 4096
debtcollector.deprecate(
'Moved l3 agent ha opts to %s' % ha_conf.__name__,
version="newton", removal_version="ocata")
OPTS = ha_conf.OPTS
class KeepalivedStateChangeHandler(object):
def __init__(self, agent):