Update Neutron server to use only keystoneauth

Migrated from deprecated keystoneclient to keystoneauth for requests
to other OpenStack services.

Partially-Implements: blueprint keystone-v3
Change-Id: I6fe5954c83d98df5ce3d23e24f4e6f464161f611
This commit is contained in:
Dariusz Smigiel 2016-05-27 11:55:06 -05:00 committed by Ihar Hrachyshka
parent 8054e0c11a
commit 65af800ec1
1 changed files with 3 additions and 3 deletions

View File

@ -17,9 +17,9 @@ import netaddr
from designateclient import exceptions as d_exc
from designateclient.v2 import client as d_client
from keystoneclient.auth.identity.generic import password
from keystoneclient.auth import token_endpoint
from keystoneclient import session
from keystoneauth1.identity.generic import password
from keystoneauth1 import session
from keystoneauth1 import token_endpoint
from neutron_lib import constants
from oslo_config import cfg
from oslo_log import log