Skip to content

Commit 2b21e67

Browse files
committed
disable configureawait
1 parent 266d847 commit 2b21e67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DotNetty.Common/Utilities/TaskEx.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ public static async void LinkOutcome(this ValueTask future, IPromise promise)
123123
{
124124
try
125125
{
126-
//context capturing not required since callback executed synchrounusly on completion in eventloop
127-
await future.ConfigureAwait(false);
126+
//context capturing not required since callback executed synchronously on completion in eventloop
127+
await future;
128128
promise.TryComplete();
129129
}
130130
catch (Exception ex)

0 commit comments

Comments
 (0)