Skip to content

Commit bf8c1b5

Browse files
Update projects/RabbitMQ.Client/client/impl/SocketFrameHandler.cs
Co-authored-by: Daniel Marbach <[email protected]>
1 parent 1f9d148 commit bf8c1b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ private async Task WriteLoop()
276276
ArrayPool<byte>.Shared.Return(segment.Array);
277277
}
278278

279-
await _pipeWriter.FlushAsync().ConfigureAwait(false);
279+
await _pipeWriter.FlushAsync()
280+
.ConfigureAwait(false);
280281
}
281282
}
282283
catch (Exception ex)

0 commit comments

Comments
 (0)