We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm working in a fairly large codebase that's using this dreaded pattern:
string result = response.Content.ReadAsStringAsync().Result;
As a result, line 67 in InOrderAsyncQueueDispatcher.cs reliably deadlocks :
InOrderAsyncQueueDispatcher.cs
_eventSlim.Wait(_cancellationTokenSource.Token);
I've added ConfigureAwait(false) to a few key code paths for my use case and it resolves the issue. This should be done throughout the solution.
ConfigureAwait(false)
I can put together a PR if you like. I just wanted to know if you were okay with that / in agreement.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm working in a fairly large codebase that's using this dreaded pattern:
As a result, line 67 in
InOrderAsyncQueueDispatcher.cs
reliably deadlocks :I've added
ConfigureAwait(false)
to a few key code paths for my use case and it resolves the issue. This should be done throughout the solution.I can put together a PR if you like. I just wanted to know if you were okay with that / in agreement.
The text was updated successfully, but these errors were encountered: