Skip to content

Commit aa6375d

Browse files
authored
[CHORE]: Local compation manager error propagation for sqlite (#4258)
## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - We also propagate errors from sqlite metadata reader - related to debugging of #4217 ## Test plan *How are these changes tested?* - [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes *Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs repository](https://github.com/chroma-core/docs)?*
1 parent b4c6fc9 commit aa6375d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/log/src/local_compaction_manager.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pub enum CompactionManagerError {
8686
HnswApplyLogsError,
8787
#[error("Error getting collection with segments: {0}")]
8888
GetCollectionWithSegmentsError(#[from] GetCollectionWithSegmentsError),
89-
#[error("Error reading from metadata segment reader")]
89+
#[error("Error reading from metadata segment reader: {0} ")]
9090
MetadataReaderError(#[from] SqliteMetadataError),
9191
#[error("Error reading from hnsw segment reader: {0}")]
9292
HnswReaderError(#[from] LocalHnswSegmentReaderError),

0 commit comments

Comments
 (0)