We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89af3da commit 1a97c39Copy full SHA for 1a97c39
turbopack/crates/turbo-tasks-backend/src/database/turbo.rs
@@ -137,8 +137,13 @@ impl<'a> BaseWriteBatch<'a> for TurboWriteBatch<'a> {
137
if !self.initial_write {
138
// Start a new compaction in the background
139
let db = self.db.clone();
140
- let handle =
141
- spawn(move || db.compact(COMPACT_MAX_COVERAGE, COMPACT_MAX_MERGE_SEQUENCE));
+ let handle = spawn(move || {
+ db.compact(
142
+ COMPACT_MAX_COVERAGE,
143
+ COMPACT_MAX_MERGE_SEQUENCE,
144
+ COMPACT_MAX_MERGE_SIZE,
145
+ )
146
+ });
147
self.compact_join_handle.lock().replace(handle);
148
}
149
0 commit comments