Browse Source
Fix PublishToEventBusAsync problem.
pull/10761/head
maliming
5 years ago
No known key found for this signature in database
GPG Key ID: 96224957E51C89E
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.EventBus.Azure/Volo/Abp/EventBus/Azure/AzureDistributedEventBus.cs
|
|
|
@ -180,7 +180,7 @@ namespace Volo.Abp.EventBus.Azure |
|
|
|
|
|
|
|
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) |
|
|
|
|