We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d43a91 commit 55f9e37Copy full SHA for 55f9e37
1 file changed
packages/backend/src/app.module.ts
@@ -38,8 +38,7 @@ import { EXPORT_INVOICE_QUEUE } from './infrastructure/queue/export-queue.servic
38
39
const config = validateConfig();
40
41
-// Parseamos REDIS_URL → host + port para BullMQ
42
-// Formato esperado: redis://localhost:6379
+// Parseamos REDIS_URL → host + port + auth para BullMQ
43
const redisUrl = new URL(config.REDIS_URL);
44
45
/**
@@ -111,7 +110,7 @@ const bullBoardModules =
111
110
host: redisUrl.hostname,
112
port: Number(redisUrl.port) || 6379,
113
username: redisUrl.username || undefined,
114
- password: redisUrl.password || undefined,
+ password: decodeURIComponent(redisUrl.password) || undefined,
115
},
116
}),
117
0 commit comments