-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.14.6 CloudAdapter fails to send Typing Activity in Teams #2040
Comments
I encounter similar bug, it get trigger when deployed the bot to teams, run in emulator is fine. class ResourceResponse(Model):
"""A response containing a resource ID.
:param id: Id of the resource
:type id: str
"""
_attribute_map = {"id": {"key": "id", "type": "str"}}
def __init__(self, *, id: str = None, **kwargs) -> None:
super(ResourceResponse, self).__init__(**kwargs)
self.id = id cloud_adapter_base.py response = response or ResourceResponse(activity.id or "") Suggest to update all callers include cloud_adapter_base.py to include the "id=" response = response or ResourceResponse(id=activity.id or "") |
Same issue encountered. |
nice catch! I created a PR to fix the occurrences I found #2057 |
When this will be released? It is a blocker issue for us, is there a roadmap or release date? |
Version
botbuilder-core 4.14.6
botbuilder-integration-aiohttp 4.14.6
botbuilder-schema 4.14.6
Describe the bug
I am unable to send typing indicators with the
ShowTypingMiddleware
middleware,turn_context.send_activity
, andturn_context.send_activities
.To Reproduce
Create a bot
define on_message_activity
From documentation
Publish in azure, set up MS Teams channel.
send 'wait' via Microsoft Teams
stacktrace:
Expected behavior
the typing indicator for 3 seconds.
The text was updated successfully, but these errors were encountered: