Fix funtional test gate failure caused by keystone client change.
After the merge of https://review.openstack.org/#/c/193894/ the path endpoint is used instead of ports. This causes functional test failure. This patch fixes this. Change-Id: Ic052e518cbb8be531a048129ad47cd19ad460268 Closes-bug: #1586222
This commit is contained in:
parent
92e7508651
commit
2253d02266
@ -20,7 +20,7 @@ class TestAuthentication(base.ClientTestBase):
|
|||||||
def nova(self, action, identity_api_version):
|
def nova(self, action, identity_api_version):
|
||||||
url = parse.urlparse(self.cli_clients.uri)
|
url = parse.urlparse(self.cli_clients.uri)
|
||||||
url = parse.urlunparse((url.scheme, url.netloc,
|
url = parse.urlunparse((url.scheme, url.netloc,
|
||||||
'/v%s' % identity_api_version,
|
'/identity/v%s' % identity_api_version,
|
||||||
url.params, url.query,
|
url.params, url.query,
|
||||||
url.fragment))
|
url.fragment))
|
||||||
flags = ('--os-username %s --os-tenant-name %s --os-password %s '
|
flags = ('--os-username %s --os-tenant-name %s --os-password %s '
|
||||||
|
Loading…
x
Reference in New Issue
Block a user