Skip to content

Commit 7af52f2

Browse files
Update projects/RabbitMQ.Client/client/impl/Connection.Receive.cs
Co-authored-by: Daniel Marbach <[email protected]>
1 parent d2b847a commit 7af52f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

projects/RabbitMQ.Client/client/impl/Connection.Receive.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ private async Task ReceiveLoop()
7777
}
7878

7979
// Done reading frames synchronously, go async
80-
InboundFrame asyncFrame = await _frameHandler.ReadFrameAsync().ConfigureAwait(false);
80+
InboundFrame asyncFrame = await _frameHandler.ReadFrameAsync()
81+
.ConfigureAwait(false);
8182
NotifyHeartbeatListener();
8283
ProcessFrame(asyncFrame);
8384
}

0 commit comments

Comments
 (0)