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:
Kevin_Zheng 2016-05-27 09:18:01 +08:00
parent 92e7508651
commit 2253d02266
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class TestAuthentication(base.ClientTestBase):
def nova(self, action, identity_api_version):
url = parse.urlparse(self.cli_clients.uri)
url = parse.urlunparse((url.scheme, url.netloc,
'/v%s' % identity_api_version,
'/identity/v%s' % identity_api_version,
url.params, url.query,
url.fragment))
flags = ('--os-username %s --os-tenant-name %s --os-password %s '