Spaces:
Runtime error
Runtime error
Commit
·
89b5f01
1
Parent(s):
43e11ef
fix
Browse files- dependencies.py +1 -1
dependencies.py
CHANGED
|
@@ -70,7 +70,7 @@ async def initialize_api_components(app_state: AppState):
|
|
| 70 |
app_state.dict = load_legal_dictionary(config.LEGAL_DIC_FOLDER+ "/legal_terms.json")
|
| 71 |
app_state.weaviateDB = connect_to_weaviate(run_diagnostics=False)
|
| 72 |
# --- Kiểm tra kết nối tới MongoDB ---
|
| 73 |
-
if mongo_db.users is None or app_state.weaviateDB is None:
|
| 74 |
logger.error("🔸Lỗi kết nối tới MongoDB hoặc Weaviate.")
|
| 75 |
raise HTTPException(status_code=500, detail="Lỗi kết nối tới database.")
|
| 76 |
|
|
|
|
| 70 |
app_state.dict = load_legal_dictionary(config.LEGAL_DIC_FOLDER+ "/legal_terms.json")
|
| 71 |
app_state.weaviateDB = connect_to_weaviate(run_diagnostics=False)
|
| 72 |
# --- Kiểm tra kết nối tới MongoDB ---
|
| 73 |
+
if await mongo_db.users is None or app_state.weaviateDB is None:
|
| 74 |
logger.error("🔸Lỗi kết nối tới MongoDB hoặc Weaviate.")
|
| 75 |
raise HTTPException(status_code=500, detail="Lỗi kết nối tới database.")
|
| 76 |
|