Skip to content

Commit

Permalink
Fix MessageBusProxy.InitAsync to be proxying _messageBus.InitAsync (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored and Evangelink committed Aug 2, 2024
1 parent 76c9e7d commit c683317
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public override IDataConsumer[] DataConsumerServices
public override async Task InitAsync()
{
EnsureMessageBusAvailable();
await InitAsync();
await _messageBus.InitAsync();
}

public void SetBuiltMessageBus(BaseMessageBus messageBus)
Expand Down

0 comments on commit c683317

Please sign in to comment.