From a99a5aa92102612b3599c98f3fe5a1635072c3ee Mon Sep 17 00:00:00 2001 From: acho Date: Sat, 24 Aug 2024 14:36:53 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20init.ts=20=EC=97=90=EB=9F=AC=20?= =?UTF-8?q?=EB=A1=9C=EA=B9=85=EC=97=90=20=EC=97=90=EB=9F=AC=20=EB=A9=94?= =?UTF-8?q?=EC=84=B8=EC=A7=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/weather-api-module/src/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/weather-api-module/src/init.ts b/backend/weather-api-module/src/init.ts index 257d8708..d7523908 100644 --- a/backend/weather-api-module/src/init.ts +++ b/backend/weather-api-module/src/init.ts @@ -12,7 +12,7 @@ async function init() { initializeScheduler(); } catch (error) { - console.error('초기화 중 오류 발생. 프로세스를 종료합니다'); + console.error('초기화 중 오류 발생. 프로세스를 종료합니다. Error: ', error.message); process.exit(1); } } From f9144450cdee03d29b0dd60905c29e9f83b43208 Mon Sep 17 00:00:00 2001 From: acho Date: Sat, 24 Aug 2024 14:37:42 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=EC=9A=B0=20=ED=8C=8C=EC=9D=BC=EC=97=90=20redis-port?= =?UTF-8?q?=20=EB=A1=9C=EA=B9=85=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/backend_weather_deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backend_weather_deploy.yaml b/.github/workflows/backend_weather_deploy.yaml index 4c49277a..ed914712 100644 --- a/.github/workflows/backend_weather_deploy.yaml +++ b/.github/workflows/backend_weather_deploy.yaml @@ -78,6 +78,7 @@ jobs: REDIS_PORT=$(grep REDIS_PORT ./backend/weather-api-module/.env.prod | cut -d '=' -f2) REDIS_PORT=${REDIS_PORT:-6379} + echo ${REDIS_PORT} if ! docker ps -a | grep -q redis-container; then echo "Redis container does not exist, creating new one..." docker volume create redis_data