Skip to content

Commit

Permalink
Merge pull request #3647 from mulkieran/check-for-both-metadata
Browse files Browse the repository at this point in the history
Multiply meta_growth by 2
  • Loading branch information
mulkieran authored Jul 10, 2024
2 parents 4dda0c3 + eb15d9a commit 6bb6c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/strat_engine/thinpool/thinpool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ impl ThinPool {
}
}

if meta_growth > backstore.available_in_backstore() {
if 2u64 * meta_growth > backstore.available_in_backstore() {
self.out_of_meta_space = true;
(
self.set_error_mode(),
Expand Down

0 comments on commit 6bb6c82

Please sign in to comment.