+++ /dev/null
-# Copyright (c) 2013 OpenStack Foundation.
-# All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-
-from neutron.common import constants
-
-SUPPORTED_AGENT_TYPES = [constants.AGENT_TYPE_OVS,
- constants.AGENT_TYPE_LINUXBRIDGE,
- constants.AGENT_TYPE_OFA]
from neutron.db import agents_db
from neutron.db import common_db_mixin as base_db
from neutron.db import models_v2
-from neutron.plugins.ml2.drivers.l2pop import constants as l2_const
from neutron.plugins.ml2 import models as ml2_models
def get_agent_by_host(self, session, agent_host):
with session.begin(subtransactions=True):
query = session.query(agents_db.Agent)
- query = query.filter(agents_db.Agent.host == agent_host,
- agents_db.Agent.agent_type.in_(
- l2_const.SUPPORTED_AGENT_TYPES))
+ query = query.filter(agents_db.Agent.host == agent_host)
return query.first()
def _get_active_network_ports(self, session, network_id):
query = query.join(models_v2.Port)
query = query.filter(models_v2.Port.network_id == network_id,
models_v2.Port.status ==
- const.PORT_STATUS_ACTIVE,
- agents_db.Agent.agent_type.in_(
- l2_const.SUPPORTED_AGENT_TYPES))
+ const.PORT_STATUS_ACTIVE)
return query
def get_nondvr_active_network_ports(self, session, network_id):
models_v2.Port.status ==
const.PORT_STATUS_ACTIVE,
models_v2.Port.device_owner ==
- const.DEVICE_OWNER_DVR_INTERFACE,
- agents_db.Agent.agent_type.in_(
- l2_const.SUPPORTED_AGENT_TYPES))
+ const.DEVICE_OWNER_DVR_INTERFACE)
return query
def get_agent_network_active_port_count(self, session, agent_host,