Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
clean up activityhandler invoke path #1872
clean up activityhandler invoke path #1872
Changes from 4 commits
25f110b
8056faf
0c20dfa
8634dff
2905f20
c269fdb
f16f7e9
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if there is an oauthprompt in the dialog stack, that would have set an invokeResponse object in the turnstate dictionary for the Invoke_Response_key key, so returning an invokeresponse object here would either throw a key collision exception or worse, override the oauthprompt's invokeresponse with a 200 OK always.
Consider either restoring this back to return a void or checking if the Invoke_Response_key has been set to an invokeresponse. If already set, return that object otherwise return 200
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the code in ActivityHandlerBase should handle that. Refer to line 70 in that file. The check you are looking for is there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@swagatmishra2007, the scenario you mention is handled by this section of code:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@swagatmishra2007 if you think this is still a problem, please open an issue, and highlight (or add) a test case that illustrates the problem, thanks.