Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/persist-client/src/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub(crate) const OPTIMIZE_IGNORED_DATA_FETCH: Config<bool> = Config::new(

pub(crate) const VALIDATE_PART_BOUNDS_ON_READ: Config<bool> = Config::new(
"persist_validate_part_bounds_on_read",
true,
false,
"Validate the part lower <= the batch lower and the part upper <= batch upper,\
for the batch containing that part",
);
Expand Down
2 changes: 1 addition & 1 deletion src/persist-client/src/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub(crate) const COMBINE_INLINE_WRITES: Config<bool> = Config::new(

pub(crate) const VALIDATE_PART_BOUNDS_ON_WRITE: Config<bool> = Config::new(
"persist_validate_part_bounds_on_write",
true,
false,
"Validate the part lower <= the batch lower and the part upper <= batch upper,\
for the batch being appended.",
);
Expand Down