From b68dca09b13166a7a357d5d41e7def93ed4e30cb Mon Sep 17 00:00:00 2001 From: Clenimar Filemon Date: Fri, 6 May 2016 18:10:53 -0300 Subject: Switch to keystoneauth This patch migrates designateclient to using keystoneauth Session instead of deprecated keystoneclient's Session and plugins. Also, this patch removes the old designateclient.auth module as it is not used anywhere else in the code base and its purpose is overridden by the fact that keystoneauth acts as an abstraction layer for authentication (handling requests and reauthentication internally). Change-Id: Ic3cc0fbb76977a04bab322ebcb1c818e75646772 --- designateclient/cli/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'designateclient/cli/base.py') diff --git a/designateclient/cli/base.py b/designateclient/cli/base.py index 3cebb2f..bf5a894 100644 --- a/designateclient/cli/base.py +++ b/designateclient/cli/base.py @@ -18,7 +18,7 @@ import abc from cliff.command import Command as CliffCommand from cliff.lister import Lister from cliff.show import ShowOne -from keystoneclient import exceptions as ks_exceptions +from keystoneauth1 import exceptions as ks_exceptions import six from designateclient import exceptions -- cgit v1.2.1