diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2014-10-17 22:26:57 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2014-10-18 00:01:45 -0500 |
| commit | 0de67016c7daa1712b568cb2e49728fac3eb57ad (patch) | |
| tree | 9a3e4f893b89983fe1d981663057922d47eb4b94 /openstackclient/common/clientmanager.py | |
| parent | 68130fa92182760882def8d3a3a97fcde5d355a1 (diff) | |
| download | python-openstackclient-0de67016c7daa1712b568cb2e49728fac3eb57ad.tar.gz | |
Remove now-unnecessary client creation hacks
Clients that can use ksc Session don't need the old junk to
fake auth anymore:
* compute
* volume
Clients that still need to be fed credentials can pick directly
from the auth object in clientmanager. The _token attribute is
removed, the token can be retrieved from the auth object:
openstackclient/tests/common/test_clientmanager.py
This change will break any plugin that relies on getting a token
from instance._token. They should be updated to use the above, or
preferable, to use keystoneclient.session.Session to create its
HTTP interface object.
Change-Id: I877a29de97a42f85f12a14c274fc003e6fba5135
Diffstat (limited to 'openstackclient/common/clientmanager.py')
| -rw-r--r-- | openstackclient/common/clientmanager.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index 928ab6ee..336c0da0 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -106,9 +106,6 @@ class ClientManager(object): self.auth_ref = self.auth.get_auth_ref(self.session) self._service_catalog = self.auth_ref.service_catalog - # This begone when clients no longer need it... - self._token = self.auth.get_token(self.session) - return def get_endpoint_for_service_type(self, service_type, region_name=None): |
