Skip to content

Commit

Permalink
Merge pull request #1816 from ianco/master
Browse files Browse the repository at this point in the history
Fix missing webhook handler
  • Loading branch information
swcurran authored Jun 16, 2022
2 parents c308329 + 3c12f31 commit 1d4f98e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions demo/runners/agent_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ async def handle_oob_invitation(self, message):
print("handle_oob_invitation()")
pass

async def handle_out_of_band(self, message):
print("handle_out_of_band()")
pass

async def handle_connection_reuse(self, message):
# we are reusing an existing connection, set our status to the existing connection
if not self._connection_ready.done():
Expand Down

0 comments on commit 1d4f98e

Please sign in to comment.