Skip to content

Commit

Permalink
Fix merge accident in recent auth bug fixes
Browse files Browse the repository at this point in the history
PR #325 removed AppKeys.FLOW_CLIENT here as we did not cherry-pick
the rest of the AppKeys change. We later applied PR #324 which fully
merged upstream's AppKeys changes. Unfortunately when we merged that
PR via GitHub it chose #325's version of this line. :doh:
  • Loading branch information
jmarshall committed Jan 8, 2024
1 parent 074bedb commit 2e0a558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/auth/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async def callback(request) -> web.Response:
cleanup_session(session)

try:
flow_client = request.app['flow_client']
flow_client = request.app[AppKeys.FLOW_CLIENT]
flow_result = flow_client.receive_callback(request, flow_dict)
login_id = flow_result.login_id
except asyncio.CancelledError:
Expand Down

0 comments on commit 2e0a558

Please sign in to comment.