Merge pull request #1016 from jo-ninja/dev

Fix typo
This commit is contained in:
Miguel Veloso 2019-04-29 20:46:33 +01:00 committed by GitHub
commit 5b9692cb2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,9 +41,9 @@ namespace Ordering.API.Application.IntegrationEvents
public async Task PublishEventsThroughEventBusAsync() public async Task PublishEventsThroughEventBusAsync()
{ {
var pendindLogEvents = await _eventLogService.RetrieveEventLogsPendingToPublishAsync(); var pendingLogEvents = await _eventLogService.RetrieveEventLogsPendingToPublishAsync();
foreach (var logEvt in pendindLogEvents) foreach (var logEvt in pendingLogEvents)
{ {
_logger.LogInformation("----- Publishing integration event: {IntegrationEventId} from {AppName} - ({@IntegrationEvent})", logEvt.EventId, Program.AppName, logEvt.IntegrationEvent); _logger.LogInformation("----- Publishing integration event: {IntegrationEventId} from {AppName} - ({@IntegrationEvent})", logEvt.EventId, Program.AppName, logEvt.IntegrationEvent);