diff --git a/conanfile.py b/conanfile.py index 3c548a4d5..4bedf8360 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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" diff --git a/src/lib/blkalloc/bitmap_blk_allocator.cpp b/src/lib/blkalloc/bitmap_blk_allocator.cpp index 8e30c5137..1967a988e 100644 --- a/src/lib/blkalloc/bitmap_blk_allocator.cpp +++ b/src/lib/blkalloc/bitmap_blk_allocator.cpp @@ -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");