Skip to content

Commit

Permalink
Fixed unawaited call
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jan 31, 2025
1 parent 62f4e41 commit 1006863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Foundatio.RabbitMQ/Messaging/RabbitMQMessageBus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ private async Task ClosePublisherConnectionAsync()

if (_publisherChannel != null)
{
_publisherChannel.DisposeAsync().AnyContext();
await _publisherChannel.DisposeAsync().AnyContext();
_publisherChannel = null;
}

Expand Down

0 comments on commit 1006863

Please sign in to comment.