Skip to content

Commit b540045

Browse files
committed
Missing ConfigureAwait
1 parent 16560f2 commit b540045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/RabbitMQ.Client/client/impl/TcpClientAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public virtual async Task ConnectAsync(string host, int port)
2727
throw new ArgumentException($"No ip address could be resolved for {host}");
2828
}
2929

30-
await ConnectAsync(ep, port);
30+
await ConnectAsync(ep, port).ConfigureAwait(false);
3131
}
3232

3333
public virtual async Task ConnectAsync(IPAddress ep, int port)

0 commit comments

Comments
 (0)