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