Merge "bypass_url required in nova admin client"

This commit is contained in:
Jenkins 2015-03-22 18:14:15 +00:00 committed by Gerrit Code Review
commit 8eddf7e568

View File

@ -98,7 +98,8 @@ def nova_client(context):
endpoint_type=CONF.nova_compute_endpoint_type)
client = Client(context.user, context.auth_token,
project_id=context.tenant, auth_url=PROXY_AUTH_URL)
bypass_url=url, project_id=context.tenant,
auth_url=PROXY_AUTH_URL)
client.client.auth_token = context.auth_token
client.client.management_url = url
return client