Skip to content

Commit

Permalink
disable configureawait
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimkim committed Oct 10, 2018
1 parent 266d847 commit 2b21e67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DotNetty.Common/Utilities/TaskEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ public static async void LinkOutcome(this ValueTask future, IPromise promise)
{
try
{
//context capturing not required since callback executed synchrounusly on completion in eventloop
await future.ConfigureAwait(false);
//context capturing not required since callback executed synchronously on completion in eventloop
await future;
promise.TryComplete();
}
catch (Exception ex)
Expand Down

0 comments on commit 2b21e67

Please sign in to comment.