Skip to content

Commit

Permalink
Add flush meta for single log store
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwmao committed Jan 23, 2025
1 parent 4714820 commit e853f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.6.13"
version = "6.6.14"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/replication/log_store/home_raft_log_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ bool HomeRaftLogStore::compact(ulong compact_lsn) {
// we directly compact and truncate up to compact_lsn assuming there are dummy logs.
REPL_STORE_LOG(DEBUG, "Compact with log holes from {} to={}", cur_max_lsn + 1, to_store_lsn(compact_lsn));
}
m_log_store->truncate(to_store_lsn(compact_lsn));
m_log_store->truncate(to_store_lsn(compact_lsn), false);
return true;
}

Expand Down

0 comments on commit e853f25

Please sign in to comment.