From 8529b56048f7f61855e50ec6fe5dd34135967b20 Mon Sep 17 00:00:00 2001 From: jade Date: Sat, 4 Jul 2026 00:30:34 +0900 Subject: [PATCH] chore: Add graceful shutdown configuration --- src/main/resources/application.properties | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index bd90c42..6a4ac49 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -10,4 +10,8 @@ mybatis.type-aliases-package= mybatis.configuration.map-underscore-to-camel-case=true spring.sql.init.mode=always -logging.level.com.corundumstudio.socketio=DEBUG \ No newline at end of file +logging.level.com.corundumstudio.socketio=DEBUG + +# 우아한 종료 (Graceful Shutdown) 설정 +server.shutdown=graceful +spring.lifecycle.timeout-per-shutdown-phase=20s \ No newline at end of file