Skip to content

Commit

Permalink
fix: ensure auto conn responses are correctly mediated
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Feb 22, 2022
1 parent 7bd1391 commit e4946e1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ async def handle(self, context: RequestContext, responder: BaseResponder):
)

if connection.accept == ConnRecord.ACCEPT_AUTO:
response = await mgr.create_response(connection)
response = await mgr.create_response(
connection, mediation_id=mediation_id
)
await responder.send_reply(
response, connection_id=connection.connection_id
)
Expand Down

0 comments on commit e4946e1

Please sign in to comment.