conductor-checkpoint-msg_01BHEPsv2EML14gFa6vkn1NP

This commit is contained in:
Daniel Chalef 2025-10-30 07:10:18 -07:00
parent 964fd31df1
commit afd83123fe
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@ services:
image: falkordb/falkordb:latest
ports:
- "6379:6379" # Redis/FalkorDB port
- "3000:3000" # FalkorDB web UI
environment:
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
volumes:

View file

@ -235,8 +235,8 @@ class GraphitiService:
max_coroutines=self.semaphore_limit,
)
# Test connection (Neo4j and FalkorDB have verify_connectivity, KuzuDB doesn't need it)
if self.config.database.provider.lower() != 'kuzu':
# Test connection (only Neo4j has verify_connectivity)
if self.config.database.provider.lower() == 'neo4j':
await self.client.driver.client.verify_connectivity() # type: ignore
# Build indices