Browse Source
Update PostConfigureAbpRabbitMqEventBusOptions.cs
pull/23016/head
maliming
12 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.EventBus.RabbitMQ/Volo/Abp/EventBus/RabbitMq/PostConfigureAbpRabbitMqEventBusOptions.cs
|
|
@ -46,7 +46,7 @@ public class PostConfigureAbpRabbitMqEventBusOptions : IPostConfigureOptions<Abp |
|
|
{ |
|
|
{ |
|
|
if (options.QueueArguments.TryGetValue(argument, out var value) && value is string stringValue && int.TryParse(stringValue, out var intValue)) |
|
|
if (options.QueueArguments.TryGetValue(argument, out var value) && value is string stringValue && int.TryParse(stringValue, out var intValue)) |
|
|
{ |
|
|
{ |
|
|
options.QueueArguments[argument] = intValue |
|
|
options.QueueArguments[argument] = intValue; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|