Skip to content

Commit

Permalink
Add release assert if btree cache is full (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanebay committed Sep 15, 2023
1 parent 85b234f commit 6dc0544
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 @@ -2,7 +2,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "3.6.11"
version = "3.6.12"

homepage = "https://github.corp.ebay.com/SDS/homestore"
description = "HomeStore"
Expand Down
2 changes: 1 addition & 1 deletion src/engine/blkstore/blkstore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class BlkStore {
const bool inserted{m_cache->insert(blkid, ibuf, &out_bbuf)};
if (!inserted) {
free_blk(blkid, boost::none, boost::none);
HS_DBG_ASSERT(0, "cache is full. failing blk allocation");
HS_REL_ASSERT(0, "cache is full. failing blk allocation");
return nullptr;
}

Expand Down

0 comments on commit 6dc0544

Please sign in to comment.