conductor-checkpoint-msg_018dRGHW6fPNqJDN6eV6SpoH
This commit is contained in:
parent
8332ec3aa9
commit
a139fca369
3 changed files with 1 additions and 17 deletions
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"mcpServers": {
|
|
||||||
"graphiti": {
|
|
||||||
"transport": "sse",
|
|
||||||
"url": "http://localhost:8000/sse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -9,7 +9,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- falkordb_data:/data
|
- falkordb_data:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "-p", "6379", "ping"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
|
|
||||||
|
|
@ -235,14 +235,6 @@ class GraphitiService:
|
||||||
max_coroutines=self.semaphore_limit,
|
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
|
# Build indices
|
||||||
await self.client.build_indices_and_constraints()
|
await self.client.build_indices_and_constraints()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue