diff --git a/conanfile.py b/conanfile.py index 6a8901725..b11af03fe 100644 --- a/conanfile.py +++ b/conanfile.py @@ -5,7 +5,7 @@ class HomestoreConan(ConanFile): name = "homestore" - version = "6.3.5" + version = "6.3.6" homepage = "https://github.com/eBay/Homestore" description = "HomeStore Storage Engine" diff --git a/src/tests/test_index_btree.cpp b/src/tests/test_index_btree.cpp index b515c91ee..f2c73df05 100644 --- a/src/tests/test_index_btree.cpp +++ b/src/tests/test_index_btree.cpp @@ -465,7 +465,7 @@ struct BtreeConcurrentTest : public BtreeTestHelper< TestType >, public ::testin // Create index table and attach to index service. BtreeTestHelper< TestType >::SetUp(); - if (this->m_bt == nullptr) { + if (this->m_bt == nullptr || SISL_OPTIONS["init_device"].as< bool >()) { this->m_bt = std::make_shared< typename T::BtreeType >(uuid, parent_uuid, 0, this->m_cfg); } else { populate_shadow_map();