From a36a516f047688079c35a1e11bfe1bd83f170386 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 12 Jan 2024 20:25:35 +0800 Subject: [PATCH] Add some more debugging --- pkg/bull-queue-admin/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/bull-queue-admin/index.js b/pkg/bull-queue-admin/index.js index 6da8a719c..eff2cbdf2 100644 --- a/pkg/bull-queue-admin/index.js +++ b/pkg/bull-queue-admin/index.js @@ -62,6 +62,8 @@ const run = async () => { console.log('redis options:', redisOptions(secrets)) const connection = new Redis(secrets.REDIS_URL, redisOptions(secrets)) + console.log('set connection: ', connection) + const rssRefreshFeed = new QueueMQ('rssRefreshFeed', { connection: connection, })