aiteamutils 0.2.27__py3-none-any.whl → 0.2.29__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -53,26 +53,22 @@ service_registry = ServiceRegistry()
53
53
 
54
54
  def get_service(name: str):
55
55
  def _get_service(db: AsyncSession = Depends(get_db)):
56
- # db 세션을 명시적으로 전달
57
56
  db_service = get_database_service()
58
- db_service.db = db # 세션 설정
59
-
60
- repository_class, service_class = service_registry.get(name)
61
-
62
- # 이미 생성된 서비스가 있다면 세션만 업데이트
63
- if hasattr(service_registry, '_instances') and name in service_registry._instances:
64
- service = service_registry._instances[name]
65
- service.db_service.db = db
66
- return service
67
-
68
- repository = repository_class(db_service)
69
- instance = service_class(repository, db_service)
70
-
57
+ db_service.db = db
58
+
59
+ # 서비스 인스턴스 초기화 보장
71
60
  if not hasattr(service_registry, '_instances'):
72
61
  service_registry._instances = {}
73
- service_registry._instances[name] = instance
74
-
75
- return instance
62
+
63
+ if name not in service_registry._instances:
64
+ repository_class, service_class = service_registry.get(name)
65
+ repository = repository_class(db_service)
66
+ service_registry._instances[name] = service_class(repository, db_service)
67
+ else:
68
+ # 기존 서비스의 db 세션 업데이트
69
+ service_registry._instances[name].db_service.db = db
70
+
71
+ return service_registry._instances[name]
76
72
  return _get_service
77
73
 
78
74
  oauth2_scheme = OAuth2PasswordBearer(tokenUrl="/users/token")
aiteamutils/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  """버전 정보"""
2
- __version__ = "0.2.27"
2
+ __version__ = "0.2.29"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.27
3
+ Version: 0.2.29
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -5,12 +5,12 @@ aiteamutils/base_service.py,sha256=E4dHGE0DvhmRyFplh46SwKJOSF_nUL7OAsCkf_ZJF_8,2
5
5
  aiteamutils/cache.py,sha256=tr0Yn8VPYA9QHiKCUzciVlQ2J1RAwNo2K9lGMH4rY3s,1334
6
6
  aiteamutils/config.py,sha256=7pJHBml8RRXC9FpoRBx0emofFkvtxsyk9_Rcur2F9hI,2724
7
7
  aiteamutils/database.py,sha256=raYKRZjEfefM3SnoPYozPu7OUGm62XWOUqZzN4_cayw,33479
8
- aiteamutils/dependencies.py,sha256=ePSS0SS6FyI2DAS_L-f4NyWhYis3wkncC-gYbWdagZw,4407
8
+ aiteamutils/dependencies.py,sha256=Fj9zwTaIrv6kNtxEagvjEYT9K1Ed2QS6eWP_ZJdaJWA,4282
9
9
  aiteamutils/enums.py,sha256=ipZi6k_QD5-3QV7Yzv7bnL0MjDz-vqfO9I5L77biMKs,632
10
10
  aiteamutils/exceptions.py,sha256=YV-ISya4wQlHk4twvGo16I5r8h22-tXpn9wa-b3WwDM,15231
11
11
  aiteamutils/security.py,sha256=jxJsWSjJOMVlNaBFxroIXrAgseJYKl_vQ_kfmHblPIA,13498
12
12
  aiteamutils/validators.py,sha256=3N245cZFjgwtW_KzjESkizx5BBUDaJLbbxfNO4WOFZ0,7764
13
- aiteamutils/version.py,sha256=pDhMx7JxvUYJ3Q1O9SWtrBCnQFZY2593mC2NvfP1YN4,43
14
- aiteamutils-0.2.27.dist-info/METADATA,sha256=iA35UWdpZDFcEoh-6Ra3eAWzFe_Q86CoiX0lZkGEKQI,1718
15
- aiteamutils-0.2.27.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- aiteamutils-0.2.27.dist-info/RECORD,,
13
+ aiteamutils/version.py,sha256=u1LPgCUqLecn5jIN0UNdmj6BabNEVC8cuN5259kXmaA,42
14
+ aiteamutils-0.2.29.dist-info/METADATA,sha256=GYdzhYKC2jKNYCo-yipPghYvSSm7tHDJxL1Ae5SWXWA,1718
15
+ aiteamutils-0.2.29.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ aiteamutils-0.2.29.dist-info/RECORD,,