summaryrefslogtreecommitdiffstats
path: root/persistence
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 /persistence
parent05b58ac83b06b00ae97ecafad101e44d4dd76aee (diff)
Remove stacksize from the thread pools and thread executors.
Diffstat (limited to 'persistence')
-rw-r--r--persistence/src/vespa/persistence/dummyimpl/dummy_bucket_executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/persistence/src/vespa/persistence/dummyimpl/dummy_bucket_executor.cpp b/persistence/src/vespa/persistence/dummyimpl/dummy_bucket_executor.cpp
index 953cfcf733f..0237723d9f3 100644
--- a/persistence/src/vespa/persistence/dummyimpl/dummy_bucket_executor.cpp
+++ b/persistence/src/vespa/persistence/dummyimpl/dummy_bucket_executor.cpp
@@ -11,7 +11,7 @@ using vespalib::makeSharedLambdaCallback;
namespace storage::spi::dummy {
DummyBucketExecutor::DummyBucketExecutor(size_t numExecutors)
- : _executor(std::make_unique<vespalib::ThreadStackExecutor>(numExecutors, 0x10000)),
+ : _executor(std::make_unique<vespalib::ThreadStackExecutor>(numExecutors)),
_lock(),
_cond(),
_inFlight(),