fix: address PR review comments for chroma server lifecycle

This commit is contained in:
Alex Newman
2026-02-13 23:39:30 -05:00
parent 1b68c55763
commit c27314f896
6 changed files with 406 additions and 123 deletions
+1 -2
View File
@@ -383,8 +383,7 @@ export class WorkerService {
port: parseInt(settings.CLAUDE_MEM_CHROMA_PORT || '8000', 10)
});
await this.chromaServer.start();
const ready = await this.chromaServer.waitForReady(60000);
const ready = await this.chromaServer.start(60000);
if (ready) {
logger.success('SYSTEM', 'Chroma server ready');