From 961a026a74c62d27d1b3402fb93a2e8df379369a Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 5 Jun 2025 17:58:43 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix:=20[#64]=20tz=5Faware(?= =?UTF-8?q?UTC=20=EA=B4=80=EB=A0=A8=20=EC=A0=95=EB=B3=B4)=20=EC=9E=90?= =?UTF-8?q?=EB=8F=99=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/utils/mongodb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/utils/mongodb.py b/common/utils/mongodb.py index 80dc3cc..bdcb564 100644 --- a/common/utils/mongodb.py +++ b/common/utils/mongodb.py @@ -4,5 +4,6 @@ from django.conf import settings def connect_colio_mongo(): mongoengine.connect( db=settings.MONGODB_NAME, - host=settings.MONGODB_URI + host=settings.MONGODB_URI, + tz_aware=True, ) \ No newline at end of file