We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.ConfigureAwait(false)
1 parent 3fda0cc commit f81afd5Copy full SHA for f81afd5
projects/RabbitMQ.Client/client/impl/Connection.cs
@@ -416,7 +416,8 @@ private async Task FinishCloseAsync(CancellationToken cancellationToken)
416
_closed = true;
417
MaybeStopHeartbeatTimers();
418
419
- await _frameHandler.CloseAsync(cancellationToken);
+ await _frameHandler.CloseAsync(cancellationToken)
420
+ .ConfigureAwait(false);
421
_channel0.SetCloseReason(CloseReason);
422
_channel0.FinishClose();
423
RabbitMqClientEventSource.Log.ConnectionClosed();
0 commit comments