From 2f2206707ad1ea40673409accb497a58da0bb470 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 12 Jan 2024 21:53:42 +0800 Subject: [PATCH] redis config --- pkg/bull-queue-admin/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/bull-queue-admin/index.js b/pkg/bull-queue-admin/index.js index 2157b040c..1c0c4b462 100644 --- a/pkg/bull-queue-admin/index.js +++ b/pkg/bull-queue-admin/index.js @@ -60,9 +60,9 @@ const run = async () => { } const connection = new Redis({ - host: secrets.REDIS_HOST, - port: secrets.REDIS_PORT, tls: { + host: secrets.REDIS_HOST, + port: secrets.REDIS_PORT, cert: secrets.REDIS_CERT, rejectUnauthorized: false, },