Skip to content

Commit a8121d7

Browse files
committed
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.
1 parent b63b7b0 commit a8121d7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.8.2 (2024-06-08 21:32)
2+
3+
### Fixed
4+
5+
*
6+
17
# 1.8.1 (2024-06-08 21:32)
28

39
### Feature

src/api/services/channel.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ export class ChannelStartupService {
788788
autoDelete: false,
789789
});
790790

791-
const queueName = transformedWe;
791+
const queueName = event;
792792

793793
await amqp.assertQueue(queueName, {
794794
durable: true,

0 commit comments

Comments
 (0)