From bd25d92e1892959dbb4a976092a7ad31025731e2 Mon Sep 17 00:00:00 2001 From: walnuts1018 Date: Sat, 11 Nov 2023 13:01:35 +0900 Subject: [PATCH] Add Redis password to options.ts --- front/src/app/api/auth/[...nextauth]/options.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/app/api/auth/[...nextauth]/options.ts b/front/src/app/api/auth/[...nextauth]/options.ts index 6780837..8f1721f 100644 --- a/front/src/app/api/auth/[...nextauth]/options.ts +++ b/front/src/app/api/auth/[...nextauth]/options.ts @@ -11,6 +11,7 @@ const redis = new Redis({ port: 26379, }], sentinelPassword: process.env.REDIS_PASSWORD, + password: process.env.REDIS_PASSWORD, name: "mymaster" });