We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57f00a6 commit f72f6c2Copy full SHA for f72f6c2
src/services/code-index/vector-store/qdrant-client.ts
@@ -491,8 +491,13 @@ export class QdrantVectorStore implements IVectorStore {
491
// Include first few file paths for debugging (avoid logging too many)
492
samplePaths: filePaths.slice(0, 3),
493
})
494
+ console.error(
495
+ `[QdrantVectorStore] Deletion error occurred Stack trace:`,
496
+ error?.stack || "No stack trace available",
497
+ )
498
- throw error
499
+ // Don't throw - allow the operation to continue despite deletion failure
500
+ // This prevents workflow disruption when vector store cleanup fails
501
}
502
503
0 commit comments