Browse Source
Merge pull request #23413 from realLiangshiwei/liangshiwei/azureservicebus
Set AutoCompleteMessages to false by default
pull/23431/head
maliming
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
framework/src/Volo.Abp.AzureServiceBus/Volo/Abp/AzureServiceBus/ClientConfig.cs
|
|
|
@ -11,5 +11,8 @@ public class ClientConfig |
|
|
|
|
|
|
|
public ServiceBusClientOptions Client { get; set; } = new(); |
|
|
|
|
|
|
|
public ServiceBusProcessorOptions Processor { get; set; } = new(); |
|
|
|
public ServiceBusProcessorOptions Processor { get; set; } = new () |
|
|
|
{ |
|
|
|
AutoCompleteMessages = false |
|
|
|
}; |
|
|
|
} |
|
|
|
|