Forum Discussion
ChaitanyaSai370
Sep 02, 2024Copper Contributor
Azure Bot working from local using teams toolkit, but not when hosted on AWS
Hi Everyone, I need help in debugging an issue I am facing while using the Azure bot on the teams channel. I have created a Teams Meeting bot using the botbuilder framework in python and tested ...
ChaitanyaSai370
Sep 04, 2024Copper Contributor
Hi Meghana-MSFT Thanks for the response.
I have an update and more information on the issue. I have pinpointed where it is breaking.
I have the below function in the Activity handler class.
async def on_teams_meeting_start_event(self, meeting, turn_context: TurnContext):
try:
await turn_context.send_activity("Meeting Started")
return
except Exception as e:
return e
It fails at await turn_context.send_activity("Meeting Started"). This line just fails without any logs and I do not get any card on the teams meeting. This also causes the server restarts.