Skip to content

Commit

Permalink
Fixed additional review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hkadayam committed Nov 9, 2023
1 parent 6ff20f2 commit fa22941
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 @@ -5,7 +5,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "4.6.1"
version = "4.7.1"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/blkalloc/bitmap_blk_allocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ BlkAllocStatus BitmapBlkAllocator::alloc_on_disk(BlkId const& bid) {
{
auto lock{portion.portion_auto_lock()};
if (!hs()->is_initializing()) {
// During recovery we might try to free the entry which is already freed while replaying the
// During recovery we might try to alloc the entry which is already alloced while replaying the
// journal, This assert is valid only post recovery.
BLKALLOC_REL_ASSERT(m_disk_bm->is_bits_reset(b.blk_num(), b.blk_count()),
"Expected disk blks to reset");
Expand Down

0 comments on commit fa22941

Please sign in to comment.