RED-10260: add quoteChar to component mapping
This commit is contained in:
parent
a4d04bddf2
commit
d7e27f4319
@ -35,15 +35,15 @@ public class TenantQueueProviderConfig {
|
||||
|
||||
@Bean
|
||||
@ConditionalOnProperty(prefix = "redaction-service", name = "priorityMode", havingValue = "false", matchIfMissing = true)
|
||||
protected Set<TenantQueueConfiguration> getTenantQueueConfigs() {
|
||||
protected TenantQueueProvider getTenantQueueConfigs() {
|
||||
|
||||
return Set.of(TenantQueueConfiguration.builder()
|
||||
.listenerId(MessageReceiver.REDACTION_REQUEST_LISTENER_ID)
|
||||
.exchangeName(REDACTION_REQUEST_EXCHANGE)
|
||||
.queuePrefix(REDACTION_REQUEST_QUEUE_PREFIX)
|
||||
.dlqName(REDACTION_DLQ)
|
||||
.arguments(Map.of("x-max-priority", 2))
|
||||
.build());
|
||||
return new TenantQueueProvider(Set.of(TenantQueueConfiguration.builder()
|
||||
.listenerId(MessageReceiver.REDACTION_REQUEST_LISTENER_ID)
|
||||
.exchangeName(REDACTION_REQUEST_EXCHANGE)
|
||||
.queuePrefix(REDACTION_REQUEST_QUEUE_PREFIX)
|
||||
.dlqName(REDACTION_DLQ)
|
||||
.arguments(Map.of("x-max-priority", 2))
|
||||
.build()));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user