Rename IdentityV3Client to IdentityClient

As per tempest.lib.services.identity.v3.identity_client IdentityV3Client class
is renamed to IdentityClient [1.], we need to fix the same in configtool in order
to avoid the method not found error

[1.] https://git.openstack.org/cgit/openstack/tempest/tree/tempest/lib/services/identity/v3/identity_client.py#n21

Change-Id: I02848df564f2364e18d7e89cafa46c0a868079fa
This commit is contained in:
Chandan Kumar 2017-03-27 10:16:01 +00:00
parent 77139f2bae
commit f844c008bb
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ class ClientManager(object):
self.identity_region, endpoint_type='adminURL',
**default_params)
else:
self.identity = identity_v3_client.IdentityV3Client(
self.identity = identity_v3_client.IdentityClient(
_auth, conf.get_defaulted('identity', 'catalog_type'),
self.identity_region, endpoint_type='adminURL',
**default_params)