Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CommandsService/AsyncDataServices/MessageBusSubscriber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private void InitializeRabbitMQ()

Console.WriteLine("--> Listenting on the Message Bus...");

_connection.ConnectionShutdown += RabbitMQ_ConnectionShitdown;
_connection.ConnectionShutdown += RabbitMQ_ConnectionShutdown;
}

protected override Task ExecuteAsync(CancellationToken stoppingToken)
Expand All @@ -66,7 +66,7 @@ protected override Task ExecuteAsync(CancellationToken stoppingToken)
return Task.CompletedTask;
}

private void RabbitMQ_ConnectionShitdown(object sender, ShutdownEventArgs e)
private void RabbitMQ_ConnectionShutdown(object sender, ShutdownEventArgs e)
{
Console.WriteLine("--> Connection Shutdown");
}
Expand Down