Skip to content

Commit

Permalink
Merge pull request #639 from raakella1/obj_ctr_sisl
Browse files Browse the repository at this point in the history
update sisl to enable obj life counter in release builds.
  • Loading branch information
raakella1 authored Jan 31, 2025
2 parents 87fb593 + e829ee2 commit 587bfbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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.7.6"
version = "3.7.7"

homepage = "https://github.corp.ebay.com/SDS/homestore"
description = "HomeStore"
Expand Down Expand Up @@ -56,7 +56,7 @@ def build_requirements(self):

def requirements(self):
self.requires("iomgr/8.8.1")
self.requires("sisl/8.9.1")
self.requires("sisl/8.9.2")

# FOSS, rarely updated
self.requires("boost/1.79.0")
Expand Down
4 changes: 0 additions & 4 deletions src/engine/homeds/btree/writeBack_cache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,10 +440,6 @@ class WriteBackCache : public std::enable_shared_from_this< WriteBackCache< K, V
shared_this->m_blkstore->write(wb_req->bid, wb_req->m_mem, 0, wb_req, false);
++write_count;

// we are done with this wb_req
HS_REL_ASSERT_EQ(wb_req, wb_req->bn->req[cp_id]);
wb_req->bn->req[cp_id] = nullptr;

if (wb_cache_outstanding_cnt > ResourceMgrSI().get_dirty_buf_qd()) {
CP_PERIODIC_LOG(
DEBUG, bt_cp_id,
Expand Down

0 comments on commit 587bfbb

Please sign in to comment.