Skip to content

Commit b7c1230

Browse files
committed
fix(app): add Redis username and password configuration for BullMQ connection
1 parent 0fca6f6 commit b7c1230

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/backend/src/app.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ const bullBoardModules =
110110
connection: {
111111
host: redisUrl.hostname,
112112
port: Number(redisUrl.port) || 6379,
113+
username: redisUrl.username || undefined,
114+
password: redisUrl.password || undefined,
113115
},
114116
}),
115117

0 commit comments

Comments
 (0)