commit | 6689f0ff35ecbdd10eaed3360ec08a2645f58c64 | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Wed Feb 12 00:51:22 2014 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Wed Feb 12 00:51:22 2014 +0000 |
tree | 2c27ba37937b4caa2678f26e5304a1424b64e39d | |
parent | 00de0d4b099991acc4c2155354aab53d4db475b1 [diff] | |
parent | be8bdbc203c191c56573887886996bc273f39308 [diff] |
Merge "fix base_url in auth.py"
diff --git a/tempest/auth.py b/tempest/auth.py index 8d826cf..080e3e8 100644 --- a/tempest/auth.py +++ b/tempest/auth.py
@@ -299,7 +299,7 @@ path = "/" + filters['api_version'] noversion_path = "/".join(parts.path.split("/")[2:]) if noversion_path != "": - path += noversion_path + path += "/" + noversion_path _base_url = _base_url.replace(parts.path, path) if filters.get('skip_path', None) is not None: _base_url = _base_url.replace(parts.path, "/")