Fix queue name used in amqp10

This commit is contained in:
Marcial Rosales 2024-11-28 16:02:23 +01:00
parent c4d9a840c2
commit 713c7c9a53
1 changed files with 2 additions and 2 deletions

View File

@ -42,12 +42,12 @@ module.exports = {
})
let connection = container.connect(getConnectionOptions())
let receiver = connection.open_receiver({
source: 'examples',
source: 'my-queue',
target: 'receiver-target',
name: 'receiver-link'
})
let sender = connection.open_sender({
target: 'examples',
target: 'my-queue',
source: 'sender-source',
name: 'sender-link'
})