Skip to content

Commit

Permalink
fix(storage): fix meta cache refill (#17459)
Browse files Browse the repository at this point in the history
  • Loading branch information
Li0k authored Jun 26, 2024
1 parent 6d8c9ab commit 7cbb3a9
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -599,8 +599,11 @@ impl HummockEventHandler {
assert_eq!(version_to_apply.id, version_delta.prev_id);
if version_to_apply.max_committed_epoch == version_delta.max_committed_epoch {
if let Some(sst_delta_infos) = &mut sst_delta_infos {
**sst_delta_infos =
version_to_apply.build_sst_delta_infos(version_delta);
sst_delta_infos.extend(
version_to_apply
.build_sst_delta_infos(version_delta)
.into_iter(),
);
}
}
version_to_apply.apply_version_delta(version_delta);
Expand Down

0 comments on commit 7cbb3a9

Please sign in to comment.