Skip to content

Commit

Permalink
Fix clean restart for index (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
shosseinimotlagh authored Apr 30, 2024
1 parent 7804a4e commit 5279147
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 @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_index_btree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5279147

Please sign in to comment.