From 5a568ba74c62b018ff1a6dbf8ce34b22acf79535 Mon Sep 17 00:00:00 2001 From: Sanal P Date: Thu, 14 Sep 2023 13:12:09 -0700 Subject: [PATCH] Add release assert if btree cache is full --- conanfile.py | 2 +- src/engine/blkstore/blkstore.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 9379d6e99..b54c1c458 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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" diff --git a/src/engine/blkstore/blkstore.hpp b/src/engine/blkstore/blkstore.hpp index b24fb6fc0..34d830bb3 100644 --- a/src/engine/blkstore/blkstore.hpp +++ b/src/engine/blkstore/blkstore.hpp @@ -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; }