mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 03:42:23 -06:00
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:
@@ -1,3 +1,9 @@
|
|||||||
|
# 1.8.2 (2024-06-08 21:32)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
*
|
||||||
|
|
||||||
# 1.8.1 (2024-06-08 21:32)
|
# 1.8.1 (2024-06-08 21:32)
|
||||||
|
|
||||||
### Feature
|
### Feature
|
||||||
|
|||||||
@@ -788,7 +788,7 @@ export class ChannelStartupService {
|
|||||||
autoDelete: false,
|
autoDelete: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const queueName = transformedWe;
|
const queueName = event;
|
||||||
|
|
||||||
await amqp.assertQueue(queueName, {
|
await amqp.assertQueue(queueName, {
|
||||||
durable: true,
|
durable: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user