conductor-checkpoint-msg_01BHEPsv2EML14gFa6vkn1NP
This commit is contained in:
parent
964fd31df1
commit
afd83123fe
2 changed files with 3 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue