Skip to content

Commit 9bea69b

Browse files
committed
remove
1 parent 5650a0f commit 9bea69b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rabbitmq/consumer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ connect();
44
async function connect() {
55

66
try {
7-
const amqpServer = "amqp://tkgdqstw:[email protected]/tkgdqstw" //"amqp://localhost:5672"
7+
const amqpServer = "amqp://localhost:5672"
88
const connection = await amqp.connect(amqpServer)
99
const channel = await connection.createChannel();
1010
await channel.assertQueue("jobs");

rabbitmq/publisher.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ connect();
66
async function connect() {
77

88
try {
9-
const amqpServer = "amqp://tkgdqstw:[email protected]/tkgdqstw" //"amqp://localhost:5672"
9+
const amqpServer = "amqp://localhost:5672"
1010
const connection = await amqp.connect(amqpServer)
1111
const channel = await connection.createChannel();
1212
await channel.assertQueue("jobs");

0 commit comments

Comments
 (0)