-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Dev/toddgrun/request concurrency #66767
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
Merged
ToddGrun
merged 23 commits into
dotnet:main
from
ryanbrandenburg:dev/toddgrun/RequestConcurrency
Feb 13, 2023
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
7c152da
Add request concurrency information for processing by the RequestExec…
ToddGrun 50d3040
Accidentally checked in local global.json
ToddGrun 958420b
Add comment about why RequiresPreviousQueueItemsCancelled is necessary
ToddGrun 715716b
Get rid of RequestConcurrency enum and instead use a flag on RequestE…
ToddGrun 0cca37a
Found some comments I missed reverting
ToddGrun 02cb458
Member renamed and comment updated
ToddGrun 8ff459f
Add previous comment back
ToddGrun 9f485f2
Fix potential ObjectDisposedException I saw while debugging
ToddGrun 5fbffa7
Do less extraneous work if queue doesn't specify CancelInProgressWork…
ToddGrun ee2e97d
undo using statement cleanups in otherwise unaffected files
ToddGrun 0a53c0d
Revert a couple other using stmt cleanups I missed in the last commit
ToddGrun ad617e8
rename some variables.
ToddGrun f5b1620
PR feedback, including using Contract, turning on nullable attributes…
ToddGrun 72f6a8a
Add test for completing request
ryanbrandenburg 7238c19
Remove the Contract dependency and duplicate TaskExtensions
ToddGrun 503e379
Merge branch 'dev/toddgrun/RequestConcurrency-SelfContained' of githu…
ryanbrandenburg 70fb7c3
Add test for Cancelation
ryanbrandenburg 833f131
Whitespace cleanup
ryanbrandenburg c068a8c
Analyzer cleanup
ryanbrandenburg a6c3f8d
Analyzer cleanup
ryanbrandenburg 00557da
Merge branch 'main' of github.com:dotnet/roslyn into dev/toddgrun/Req…
ryanbrandenburg 8ab7bbd
Fix test due to task issue
ryanbrandenburg 2bde77f
Make the ObjectDisposedCatch tighter around the potentially offending…
ToddGrun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
nit: doc that CT.None here is very intentional as this code is absolutely necessary to run for clearnup regardless of how the task completed, and regardless if things were cancelled.