Fixes "InvalidOperationException" errors by performing async operations in SemaphoreSlim#796
Merged
cheenamalhotra merged 20 commits intodotnet:masterfrom Nov 19, 2020
Merged
Conversation
…erations in semaphore queue.
cheenamalhotra
commented
Nov 13, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNITcpHandle.cs
Show resolved
Hide resolved
cheenamalhotra
commented
Nov 13, 2020
...Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/TdsParserStateObjectManaged.cs
Show resolved
Hide resolved
This was
linked to
issues
Nov 13, 2020
martyt
reviewed
Nov 13, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNISslStream.cs
Outdated
Show resolved
Hide resolved
6f3a4e9 to
a6e8db2
Compare
a6e8db2 to
7cc72ed
Compare
roji
reviewed
Nov 17, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNISslStream.cs
Outdated
Show resolved
Hide resolved
9004a29 to
de07449
Compare
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNIStreams.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SqlUtil.cs
Outdated
Show resolved
Hide resolved
Wraith2
reviewed
Nov 18, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNINpHandle.cs
Outdated
Show resolved
Hide resolved
Wraith2
reviewed
Nov 18, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SNI/SNITcpHandle.cs
Show resolved
Hide resolved
karinazhou
reviewed
Nov 18, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/SqlUtil.cs
Show resolved
Hide resolved
df81c95 to
2d69793
Compare
2d69793 to
10421a9
Compare
DavoudEshtehari
approved these changes
Nov 19, 2020
This was referenced Mar 8, 2021
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #459 #54 #786 #792
Rework over PR #579 with helpful ideas from @roji and @DavoudEshtehari
This PR fixes the issue where below exception would occur randomly due to SslStream.WriteAsync collisions.
The design change introduces use of
SemaphoreSlimwithSNISslStreamandSNINetworkStreamoverrides to ensure only 1 task is allowed to read/write to stream asynchronously at a time.Not fixed in this issue