Merge "Drop RpcCallback usage from DhcpRpcCallback"

This commit is contained in:
Jenkins 2014-11-20 08:44:59 +00:00 committed by Gerrit Code Review
commit 21f41d086b

View File

@ -15,11 +15,11 @@
from oslo.config import cfg
from oslo.db import exception as db_exc
from oslo import messaging
from neutron.api.v2 import attributes
from neutron.common import constants
from neutron.common import exceptions as n_exc
from neutron.common import rpc as n_rpc
from neutron.common import utils
from neutron.extensions import portbindings
from neutron import manager
@ -31,14 +31,14 @@ from neutron.openstack.common import log as logging
LOG = logging.getLogger(__name__)
class DhcpRpcCallback(n_rpc.RpcCallback):
class DhcpRpcCallback(object):
"""DHCP agent RPC callback in plugin implementations."""
# API version history:
# 1.0 - Initial version.
# 1.1 - Added get_active_networks_info, create_dhcp_port,
# and update_dhcp_port methods.
RPC_API_VERSION = '1.1'
target = messaging.Target(version='1.1')
def _get_active_networks(self, context, **kwargs):
"""Retrieve and return a list of the active networks."""