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.
1 parent d2b847a commit 7af52f2Copy full SHA for 7af52f2
projects/RabbitMQ.Client/client/impl/Connection.Receive.cs
@@ -77,7 +77,8 @@ private async Task ReceiveLoop()
77
}
78
79
// Done reading frames synchronously, go async
80
- InboundFrame asyncFrame = await _frameHandler.ReadFrameAsync().ConfigureAwait(false);
+ InboundFrame asyncFrame = await _frameHandler.ReadFrameAsync()
81
+ .ConfigureAwait(false);
82
NotifyHeartbeatListener();
83
ProcessFrame(asyncFrame);
84
0 commit comments