From 41a6c783519667365cb518bcf675386b7006f537 Mon Sep 17 00:00:00 2001 From: Sean-mn Date: Mon, 16 Mar 2026 13:45:55 +0900 Subject: [PATCH 1/2] =?UTF-8?q?update:=20redis=20=EC=97=B0=EA=B2=B0?= =?UTF-8?q?=EB=AC=B8=EC=9E=90=EC=97=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PushAndPull/Server/appsettings.Development.json | 2 +- PushAndPull/Server/appsettings.Production.json | 2 +- PushAndPull/Server/appsettings.json | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/PushAndPull/Server/appsettings.Development.json b/PushAndPull/Server/appsettings.Development.json index 6d166d2..5d96cf7 100644 --- a/PushAndPull/Server/appsettings.Development.json +++ b/PushAndPull/Server/appsettings.Development.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "127.0.0.1:6379,abortConnect=false" + "ConnectionString": "localhost:6379" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-dev" diff --git a/PushAndPull/Server/appsettings.Production.json b/PushAndPull/Server/appsettings.Production.json index 42bca75..c5a7498 100644 --- a/PushAndPull/Server/appsettings.Production.json +++ b/PushAndPull/Server/appsettings.Production.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "127.0.0.1:6379,abortConnect=false" + "ConnectionString": "redis:6379" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-prod" diff --git a/PushAndPull/Server/appsettings.json b/PushAndPull/Server/appsettings.json index a5213c0..f877c84 100644 --- a/PushAndPull/Server/appsettings.json +++ b/PushAndPull/Server/appsettings.json @@ -13,5 +13,9 @@ "KeyVault": { "Uri": "https://pushandpullsecret.vault.azure.net/", "DbConnectionSecretName": "DbConnection-dev" + }, + "Redis": { + "ConnectionString": "localhost:6379" } + } From 68b4e6a349568b428272fea19c2b1d6c9dd9845b Mon Sep 17 00:00:00 2001 From: Sean-mn Date: Mon, 16 Mar 2026 13:55:13 +0900 Subject: [PATCH 2/2] =?UTF-8?q?update:=20abortConnect=3Dfalse=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PushAndPull/Server/appsettings.Development.json | 2 +- PushAndPull/Server/appsettings.Production.json | 2 +- PushAndPull/Server/appsettings.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PushAndPull/Server/appsettings.Development.json b/PushAndPull/Server/appsettings.Development.json index 5d96cf7..a9dea80 100644 --- a/PushAndPull/Server/appsettings.Development.json +++ b/PushAndPull/Server/appsettings.Development.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "localhost:6379" + "ConnectionString": "localhost:6379,abortConnect=false" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-dev" diff --git a/PushAndPull/Server/appsettings.Production.json b/PushAndPull/Server/appsettings.Production.json index c5a7498..79dbb36 100644 --- a/PushAndPull/Server/appsettings.Production.json +++ b/PushAndPull/Server/appsettings.Production.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "redis:6379" + "ConnectionString": "redis:6379,abortConnect=false" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-prod" diff --git a/PushAndPull/Server/appsettings.json b/PushAndPull/Server/appsettings.json index f877c84..a206318 100644 --- a/PushAndPull/Server/appsettings.json +++ b/PushAndPull/Server/appsettings.json @@ -15,7 +15,7 @@ "DbConnectionSecretName": "DbConnection-dev" }, "Redis": { - "ConnectionString": "localhost:6379" + "ConnectionString": "localhost:6379,abortConnect=false" } }