From 3c12f319503a33e5837f621e4801c33ed24d1f10 Mon Sep 17 00:00:00 2001 From: Ian Costanzo Date: Thu, 16 Jun 2022 10:44:18 -0300 Subject: [PATCH] Fix missing webhook handler Signed-off-by: Ian Costanzo --- demo/runners/agent_container.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/demo/runners/agent_container.py b/demo/runners/agent_container.py index 164360e0e7..7c16d81d7d 100644 --- a/demo/runners/agent_container.py +++ b/demo/runners/agent_container.py @@ -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():