diff options
| author | Clenimar Filemon <clenimar.filemon@gmail.com> | 2016-05-06 18:10:53 -0300 |
|---|---|---|
| committer | Clenimar Filemon <clenimar.filemon@gmail.com> | 2016-05-16 17:20:28 -0300 |
| commit | b68dca09b13166a7a357d5d41e7def93ed4e30cb (patch) | |
| tree | c81bca2f0d1eac8cbd2bd25eb8a4ffa96ed2c4ea /designateclient/cli/base.py | |
| parent | 11416b47261e87a9acb54b78045e5475097f5c81 (diff) | |
| download | python-designateclient-b68dca09b13166a7a357d5d41e7def93ed4e30cb.tar.gz | |
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
Diffstat (limited to 'designateclient/cli/base.py')
| -rw-r--r-- | designateclient/cli/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
