fix: Correction in global RabbitMQ queue name

Fix global RabbitMQ queue name in `channel.service.ts` and update CHANGELOG.md.
The queue name has been changed from `transformedWe` to `event`.
This fix prevents queue errors and ensures correct functionality of inter-service communication.
This commit is contained in:
Davidson Gomes 2024-07-03 13:47:25 -03:00
parent b63b7b0b7b
commit a8121d7fe6
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# 1.8.2 (2024-06-08 21:32)
### Fixed
*
# 1.8.1 (2024-06-08 21:32)
### Feature

View File

@ -788,7 +788,7 @@ export class ChannelStartupService {
autoDelete: false,
});
const queueName = transformedWe;
const queueName = event;
await amqp.assertQueue(queueName, {
durable: true,