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
|
image: falkordb/falkordb:latest
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379" # Redis/FalkorDB port
|
- "6379:6379" # Redis/FalkorDB port
|
||||||
|
- "3000:3000" # FalkorDB web UI
|
||||||
environment:
|
environment:
|
||||||
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
|
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
||||||
|
|
@ -235,8 +235,8 @@ class GraphitiService:
|
||||||
max_coroutines=self.semaphore_limit,
|
max_coroutines=self.semaphore_limit,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Test connection (Neo4j and FalkorDB have verify_connectivity, KuzuDB doesn't need it)
|
# Test connection (only Neo4j has verify_connectivity)
|
||||||
if self.config.database.provider.lower() != 'kuzu':
|
if self.config.database.provider.lower() == 'neo4j':
|
||||||
await self.client.driver.client.verify_connectivity() # type: ignore
|
await self.client.driver.client.verify_connectivity() # type: ignore
|
||||||
|
|
||||||
# Build indices
|
# Build indices
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue