diff --git a/server/src/services/queue.js b/server/src/services/queue.js index 13cf45c..56b9222 100644 --- a/server/src/services/queue.js +++ b/server/src/services/queue.js @@ -44,6 +44,7 @@ function notifyDeployListeners(deployId, message, stream) { export async function initQueue() { // Parse Redis URL const redisUrl = new URL(config.redisUrl); + console.log(`[QUEUE] Redis parsed - host: ${redisUrl.hostname}, port: ${redisUrl.port}, password: ${redisUrl.password ? '***' : '(none)'}, db: ${redisUrl.pathname}`); connection = new IORedis({ host: redisUrl.hostname, port: parseInt(redisUrl.port || '6379'),