From 99f323e4c75357c319e51ec5a28900735ef9492a Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Wed, 8 Nov 2017 13:59:35 -0500 Subject: [PATCH] Remove neutron.common.ipv6_utils.is_enabled() is_enabled() was marked deprecated for Pike and all in-tree users have been changed, remove it. Change-Id: If087fc7e138f8302882e26550ea3e2abc521da9a --- neutron/common/ipv6_utils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/neutron/common/ipv6_utils.py b/neutron/common/ipv6_utils.py index d0fc0fa02b4..5b13654346f 100644 --- a/neutron/common/ipv6_utils.py +++ b/neutron/common/ipv6_utils.py @@ -18,7 +18,6 @@ IPv6-related utilities and helper functions. """ import os -from debtcollector import moves import netaddr from neutron_lib import constants as const from oslo_log import log @@ -50,11 +49,6 @@ def is_enabled_and_bind_by_default(): return _IS_IPV6_ENABLED -is_enabled = moves.moved_function(is_enabled_and_bind_by_default, - 'is_enabled', __name__, version='Ocata', - removal_version='Pike') - - def is_auto_address_subnet(subnet): """Check if subnet is an auto address subnet.""" modes = [const.IPV6_SLAAC, const.DHCPV6_STATELESS]