Fix gate: caused by tempest(removal of "service" param)

Tempest removed "service" param from Manager class in
following patch:-
https://review.openstack.org/#/c/416699

The use of "service" param is removed with this patch.

Change-Id: I67f79efd2049c05d36ea56691b664417ed358fd8
This commit is contained in:
yatin 2017-01-05 15:59:31 +05:30
parent 8d94f5cc32
commit cd82336108
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class Manager(clients.Manager):
if not credentials:
credentials = common_creds.get_configured_credentials(
'identity_admin')
super(Manager, self).__init__(credentials, 'container-infra')
super(Manager, self).__init__(credentials)
self.auth_provider.orig_base_url = self.auth_provider.base_url
self.auth_provider.base_url = self.bypassed_base_url
auth = self.auth_provider