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

This commit is contained in:
Zuul 2018-11-08 19:48:56 +00:00 committed by Gerrit Code Review
commit 897906b4b2
3 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@
import sys
from neutron.common import config as common_config
from neutron.common import rpc as n_rpc
from neutron.conf.agent import common as config
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,7 +13,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
import oslo_messaging

View File

@ -12,11 +12,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from neutron.common import rpc as n_rpc
from neutron.db import agents_db
from neutron.db import common_db_mixin
from neutron.services import provider_configuration as provconf
from neutron_lib import exceptions as n_exc
from neutron_lib import rpc as n_rpc
from oslo_config import cfg
import oslo_messaging as messaging
from oslo_utils import importutils