aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/docsummary
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/docsummary
parent05b58ac83b06b00ae97ecafad101e44d4dd76aee (diff)
Remove stacksize from the thread pools and thread executors.
Diffstat (limited to 'searchcore/src/tests/proton/docsummary')
-rw-r--r--searchcore/src/tests/proton/docsummary/docsummary.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/tests/proton/docsummary/docsummary.cpp b/searchcore/src/tests/proton/docsummary/docsummary.cpp
index 9709530f2c2..9bd3d6dbec5 100644
--- a/searchcore/src/tests/proton/docsummary/docsummary.cpp
+++ b/searchcore/src/tests/proton/docsummary/docsummary.cpp
@@ -158,7 +158,7 @@ BuildContext::BuildContext(AddFieldsType add_fields)
: DocBuilder(add_fields),
_dmk("summary"),
_fixed_repo(get_repo(), get_document_type()),
- _summaryExecutor(4, 128_Ki),
+ _summaryExecutor(4),
_noTlSyncer(),
_str(_summaryExecutor, "summary",
LogDocumentStore::Config(
@@ -242,7 +242,7 @@ public:
DBContext(std::shared_ptr<const DocumentTypeRepo> repo, const char *docTypeName)
: _dmk(docTypeName),
_fileHeaderContext(),
- _summaryExecutor(8, 128_Ki),
+ _summaryExecutor(8),
_shared_service(_summaryExecutor, _summaryExecutor),
_tls(_shared_service.transport(), "tmp", 9013, ".", _fileHeaderContext),
_made_dir(std::filesystem::create_directory(std::filesystem::path("tmpdb"))),
@@ -272,7 +272,7 @@ public:
_shared_service, _tls, _dummy, _fileHeaderContext,
std::make_shared<search::attribute::Interlock>(),
std::make_unique<MemoryConfigStore>(),
- std::make_shared<vespalib::ThreadStackExecutor>(16, 128_Ki), _hwInfo),
+ std::make_shared<vespalib::ThreadStackExecutor>(16), _hwInfo),
_ddb->start();
_ddb->waitForOnlineState();
_aw = std::make_unique<AttributeWriter>(_ddb->getReadySubDB()->getAttributeManager());