mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
fix: improve error handling during vector store deletion
This commit is contained in:
parent
57f00a665b
commit
f72f6c2333
1 changed files with 6 additions and 1 deletions
|
|
@ -491,8 +491,13 @@ export class QdrantVectorStore implements IVectorStore {
|
|||
// Include first few file paths for debugging (avoid logging too many)
|
||||
samplePaths: filePaths.slice(0, 3),
|
||||
})
|
||||
console.error(
|
||||
`[QdrantVectorStore] Deletion error occurred Stack trace:`,
|
||||
error?.stack || "No stack trace available",
|
||||
)
|
||||
|
||||
throw error
|
||||
// Don't throw - allow the operation to continue despite deletion failure
|
||||
// This prevents workflow disruption when vector store cleanup fails
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue