Browse Source

Merge pull request #10762 from abpframework/auto-merge/rel-5-0/657

Merge branch dev with rel-5.0
pull/10763/head
maliming 5 years ago
committed by GitHub
parent
commit
87e1a8f706
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.EventBus.Azure/Volo/Abp/EventBus/Azure/AzureDistributedEventBus.cs

2
framework/src/Volo.Abp.EventBus.Azure/Volo/Abp/EventBus/Azure/AzureDistributedEventBus.cs

@ -180,7 +180,7 @@ public class AzureDistributedEventBus : DistributedEventBusBase, ISingletonDepen
protected override async Task PublishToEventBusAsync(Type eventType, object eventData)
{
await PublishAsync(eventType, eventData);
await PublishAsync(EventNameAttribute.GetNameOrDefault(eventType), eventData);
}
protected override void AddToUnitOfWork(IUnitOfWork unitOfWork, UnitOfWorkEventRecord eventRecord)

Loading…
Cancel
Save