Skip to content

Commit

Permalink
horten log store test
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonYao287 committed Sep 11, 2024
1 parent 55f68a0 commit 709c1f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.4.57"
version = "6.4.58"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
4 changes: 1 addition & 3 deletions src/tests/test_log_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ SISL_OPTION_GROUP(test_log_store,
"number of log stores in all, they will spread to each logdev evenly",
::cxxopts::value< uint32_t >()->default_value("16"), "number"),
(num_records, "", "num_records", "number of record to test",
::cxxopts::value< uint32_t >()->default_value("10000"), "number"),
::cxxopts::value< uint32_t >()->default_value("1000"), "number"),
(iterations, "", "iterations", "Iterations", ::cxxopts::value< uint32_t >()->default_value("1"),
"the number of iterations to run each test"));

Expand All @@ -1276,7 +1276,5 @@ int main(int argc, char* argv[]) {
SISL_OPTIONS_LOAD(parsed_argc, argv, logging, test_log_store, iomgr, test_common_setup);
sisl::logging::SetLogger("test_log_store");
spdlog::set_pattern("[%D %T%z] [%^%l%$] [%t] %v");
sisl::logging::SetModuleLogLevel("logstore", spdlog::level::level_enum::trace);
sisl::logging::SetModuleLogLevel("journalvdev", spdlog::level::level_enum::debug);
return RUN_ALL_TESTS();
}

0 comments on commit 709c1f3

Please sign in to comment.