[FEAT] (사용자 로직): 인증 서비스 로직 구현 중
v0.1.1 (2025-11-13) - 사용자 관련 인증 서비스 로직 구현 중
This commit is contained in:
@@ -28,6 +28,11 @@ class RedisFacadeOpr():
|
||||
Returns:
|
||||
bool: 연결 성공 시 True, 실패 시 False
|
||||
"""
|
||||
# 이미 연결되어 있다면 재연결하지 않음
|
||||
if self.is_connected():
|
||||
logging.debug("Redis already connected, skipping reconnection")
|
||||
return True
|
||||
|
||||
try:
|
||||
# Redis Client 연결
|
||||
self.redis_client = redis.StrictRedis(**self.redis_config)
|
||||
|
||||
Reference in New Issue
Block a user