aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/documentdb_test.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-12-19 16:06:16 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-12-20 05:10:52 +0000
commita00e560b0d8267e9b376e5c0e6a2139a7be63281 (patch)
treeba207915b8cac9fb92493cc103821f6cce9db31b /searchcore/src/tests/proton/documentdb/documentdb_test.cpp
parent05b58ac83b06b00ae97ecafad101e44d4dd76aee (diff)
Remove stacksize from the thread pools and thread executors.
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/documentdb_test.cpp')
-rw-r--r--searchcore/src/tests/proton/documentdb/documentdb_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/documentdb/documentdb_test.cpp b/searchcore/src/tests/proton/documentdb/documentdb_test.cpp
index cdf874a6601..47cbde152ef 100644
--- a/searchcore/src/tests/proton/documentdb/documentdb_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/documentdb_test.cpp
@@ -128,7 +128,7 @@ Fixture::Fixture(bool file_config)
: FixtureBase(file_config),
_dummy(),
_myDBOwner(),
- _summaryExecutor(8, 128_Ki),
+ _summaryExecutor(8),
_shared_service(_summaryExecutor, _summaryExecutor),
_hwInfo(),
_db(),
@@ -155,7 +155,7 @@ Fixture::Fixture(bool file_config)
_fileHeaderContext,
std::make_shared<search::attribute::Interlock>(),
make_config_store(),
- std::make_shared<vespalib::ThreadStackExecutor>(16, 128_Ki), _hwInfo);
+ std::make_shared<vespalib::ThreadStackExecutor>(16), _hwInfo);
_db->start();
_db->waitForOnlineState();
}