Skip to content

Commit

Permalink
fix: Correction in the generation of the queue name 'rabbit'
Browse files Browse the repository at this point in the history
Fixes a bug in the generation of the 'rabbit' queue name in the 'channel.service.ts' file. The variable 'transformedWe' was replaced by 'event' to generate the queue name. This ensures that the queue name is generated correctly, avoiding possible errors or malfunctions in the system.
  • Loading branch information
dgcode-tec committed Jun 30, 2024
1 parent b5683ae commit 8e72983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/services/channel.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ export class ChannelStartupService {
autoDelete: false,
});

const queueName = transformedWe;
const queueName = event;

await amqp.assertQueue(queueName, {
durable: true,
Expand Down

0 comments on commit 8e72983

Please sign in to comment.