We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb1054f commit 9a4ef6cCopy full SHA for 9a4ef6c
src/new_index/schema.rs
@@ -374,9 +374,14 @@ impl Indexer {
374
self.start_auto_compactions(&self.store.cache_db);
375
376
if let DBFlush::Disable = self.flush {
377
- debug!("flushing to disk");
+ debug!("flushing txstore_db disk");
378
self.store.txstore_db.flush();
379
+ debug!("flushing txstore_db complete");
380
+
381
+ debug!("flushing history_db disk");
382
self.store.history_db.flush();
383
+ debug!("flushing history_db complete");
384
385
self.flush = DBFlush::Enable;
386
}
387
0 commit comments