We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d32d63 commit 7de7506Copy full SHA for 7de7506
backend/main.py
@@ -68,9 +68,8 @@ async def test_weaviate_connection(self):
68
if await client.is_ready():
69
logger.info("Weaviate connection successful and ready")
70
except Exception as e:
71
- logger.warning(f"Failed to connect to Weaviate during startup: {e}")
72
- logger.warning("Continuing without Weaviate - some features may not work")
73
- # Don't raise - allow backend to start even if Weaviate is unavailable
+ logger.error(f"Failed to connect to Weaviate: {e}")
+ raise
74
75
async def stop_background_tasks(self):
76
"""Stops all background tasks and connections gracefully."""
0 commit comments