Merge "Fix auth in actions if there is no auth_uri in context"

This commit is contained in:
Jenkins 2017-08-03 00:45:44 +00:00 committed by Gerrit Code Review
commit c7fe4e8453

@ -31,7 +31,7 @@ CONF = cfg.CONF
def client():
ctx = context.ctx()
auth_url = ctx.auth_uri
auth_url = ctx.auth_uri or CONF.keystone_authtoken.auth_uri
cl = ks_client.Client(
user_id=ctx.user_id,