feat(RabbitMQ Trigger Node): Add options to configure assert of exchanges and queues (#8430)

This commit is contained in:
Andrea Ascari
2024-02-02 16:02:09 +01:00
committed by GitHub
parent ee5e422094
commit 4b3659f04f
2 changed files with 24 additions and 2 deletions

View File

@@ -72,6 +72,20 @@ export const rabbitDefaultOptions: Array<
default: false,
description: 'Whether the queue will be deleted when the number of consumers drops to zero',
},
{
displayName: 'Assert Exchange',
name: 'assertExchange',
type: 'boolean',
default: true,
description: 'Whether to assert the exchange exists before sending',
},
{
displayName: 'Assert Queue',
name: 'assertQueue',
type: 'boolean',
default: true,
description: 'Whether to assert the queue exists before sending',
},
{
displayName: 'Durable',
name: 'durable',