Merge "use common rpc and exceptions from neutron-lib"

This commit is contained in:
Zuul 2018-11-08 00:48:36 +00:00 committed by Gerrit Code Review
commit 5ffd2b759a
4 changed files with 4 additions and 5 deletions

View File

@ -14,12 +14,12 @@
# under the License.
from neutron.common import rpc as n_rpc
from neutron import manager
from neutron_taas.common import topics
from neutron_taas.services.taas.agents import taas_agent_api as api
from neutron_lib import rpc as n_rpc
from oslo_config import cfg
from oslo_log import log as logging
from oslo_service import service

View File

@ -13,11 +13,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron_lib import rpc as n_rpc
from neutron_taas._i18n import _
from oslo_config import cfg
import oslo_messaging as messaging
from neutron.common import rpc as n_rpc
TaasOpts = [
cfg.StrOpt(

View File

@ -14,8 +14,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron.common import rpc as n_rpc
from neutron_lib import rpc as n_rpc
from oslo_log import log as logging
import oslo_messaging as messaging

View File

@ -14,8 +14,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron.common import rpc as n_rpc
from neutron_lib import exceptions as n_exc
from neutron_lib import rpc as n_rpc
from neutron_taas.common import topics
from neutron_taas.services.taas import service_drivers
from neutron_taas.services.taas.service_drivers import taas_agent_api