Skip to content

Commit f70513d

Browse files
committed
Add missing ConfigureAwait
1 parent fb2e682 commit f70513d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/RabbitMQ.Client/client/TaskExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ static async Task DoTimeoutAfter(Task task, TimeSpan timeout)
8181
cts.Cancel();
8282
}
8383

84-
await task;
84+
await task.ConfigureAwait(false);
8585
}
8686
}
8787
#endif

0 commit comments

Comments
 (0)