Browse Source

Fixed bugs in EventBusServiceBus project

pull/1774/head
Sumit Ghosh 3 years ago
parent
commit
8066693d8c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs

+ 1
- 1
src/BuildingBlocks/EventBus/EventBusServiceBus/EventBusServiceBus.cs View File

@ -121,7 +121,7 @@ public class EventBusServiceBus : IEventBus
var messageData = Encoding.UTF8.GetString(message.Body);
// Complete the message so that it is not received again.
if (await ProcessEvent(eventName, messageData))
if (await ProcessEventAsync(eventName, messageData))
{
await _serviceBusPersisterConnection.SubscriptionClient.CompleteAsync(message.SystemProperties.LockToken);
}


Loading…
Cancel
Save