conductor-checkpoint-msg_018dRGHW6fPNqJDN6eV6SpoH

This commit is contained in:
Daniel Chalef 2025-10-30 07:29:23 -07:00
parent 8332ec3aa9
commit a139fca369
3 changed files with 1 additions and 17 deletions

View file

@ -1,8 +0,0 @@
{
"mcpServers": {
"graphiti": {
"transport": "sse",
"url": "http://localhost:8000/sse"
}
}
}

View file

@ -9,7 +9,7 @@ services:
volumes:
- falkordb_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
test: ["CMD", "redis-cli", "-p", "6379", "ping"]
interval: 10s
timeout: 5s
retries: 5

View file

@ -235,14 +235,6 @@ class GraphitiService:
max_coroutines=self.semaphore_limit,
)
# Test connection based on database provider
if self.config.database.provider.lower() == 'neo4j':
await self.client.driver.client.verify_connectivity() # type: ignore
elif self.config.database.provider.lower() == 'falkordb':
# FalkorDB uses ping() method to test connectivity
self.client.driver.client.ping() # type: ignore
# KuzuDB doesn't need a connectivity test (in-memory)
# Build indices
await self.client.build_indices_and_constraints()