Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Jun 20, 2024
1 parent ac828ef commit e50610e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected override async Task ProcessChannelAsync()
}
catch (OperationCanceledException)
{
if (!_reader.Completion.IsCompleted)
if (false == _reader.Completion.IsCompleted)
{
throw;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ await consumer.HandleBasicDeliverAsync(
}
catch (OperationCanceledException)
{
if (!_reader.Completion.IsCompleted)
if (false == _reader.Completion.IsCompleted)
{
throw;
}
Expand Down

0 comments on commit e50610e

Please sign in to comment.