Skip to content

Commit

Permalink
Reduce number of test query threads (#2228)
Browse files Browse the repository at this point in the history
Seems to significantly slow down our tests as they work with many small operations on systems with many processors
  • Loading branch information
benjaminwinger committed Oct 17, 2023
1 parent fd38139 commit b79718b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/include/graph_test/base_graph_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ class BaseGraphTest : public Test {
public:
void SetUp() override {
systemConfig = std::make_unique<main::SystemConfig>(
common::BufferPoolConstants::DEFAULT_BUFFER_POOL_SIZE_FOR_TESTING);
common::BufferPoolConstants::DEFAULT_BUFFER_POOL_SIZE_FOR_TESTING,
2 /*numThreadsForExec*/);
setDatabasePath();
removeDir(databasePath);
}
Expand Down

0 comments on commit b79718b

Please sign in to comment.