diff --git a/conanfile.py b/conanfile.py index deee0421d..f79b22549 100644 --- a/conanfile.py +++ b/conanfile.py @@ -9,7 +9,7 @@ class HomestoreConan(ConanFile): name = "homestore" - version = "6.4.66" + version = "6.4.67" homepage = "https://github.com/eBay/Homestore" description = "HomeStore Storage Engine" diff --git a/src/tests/test_index_crash_recovery.cpp b/src/tests/test_index_crash_recovery.cpp index 0f5963eff..83b1928cd 100644 --- a/src/tests/test_index_crash_recovery.cpp +++ b/src/tests/test_index_crash_recovery.cpp @@ -404,8 +404,9 @@ struct IndexCrashTest : public test_common::HSTestHelper, BtreeTestHelper< TestT req.enable_route_tracing(); const auto ret = this->m_bt->get(req); ASSERT_EQ(ret, btree_status_t::success) << "Missing key " << key << " in btree but present in shadow map"; - LOGINFO("{} - Key {} passed sanity check!", count++, key.key()); }); + LOGINFO("Sanity check passed for {} keys!", count); + } void crash_and_recover(OperationList& operations, std::string filename = "") { @@ -439,7 +440,7 @@ struct IndexCrashTest : public test_common::HSTestHelper, BtreeTestHelper< TestT std::string re_filename = filename + "_after_reapply.dot"; LOGINFO("Visualize the tree after reapply {}", re_filename); this->visualize_keys(re_filename); - this->print_keys("Post crash and recovery, btree structure: "); +// this->print_keys("Post crash and recovery, btree structure: "); } this->get_all();