Skip to content

Commit

Permalink
fixed login password in config.js
Browse files Browse the repository at this point in the history
Signed-off-by: prathambatra <batrapratham999@gmail.com>
  • Loading branch information
prathambatra committed May 24, 2020
1 parent 235e5d9 commit b5d3c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
host: process.env.host || "localhost",
login: process.env.login || "guest",
password: process.env.password || "guest",
login: process.env.login || "test",
password: process.env.password || "test",
port: process.env.port || "5672",
appSecret: process.env.appSecret || "" ,
minio: {
Expand Down

0 comments on commit b5d3c52

Please sign in to comment.