summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/executor/blocking_executor_stress.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 /vespalib/src/tests/executor/blocking_executor_stress.cpp
parent05b58ac83b06b00ae97ecafad101e44d4dd76aee (diff)
Remove stacksize from the thread pools and thread executors.
Diffstat (limited to 'vespalib/src/tests/executor/blocking_executor_stress.cpp')
-rw-r--r--vespalib/src/tests/executor/blocking_executor_stress.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/executor/blocking_executor_stress.cpp b/vespalib/src/tests/executor/blocking_executor_stress.cpp
index 7292e374559..870c8cee920 100644
--- a/vespalib/src/tests/executor/blocking_executor_stress.cpp
+++ b/vespalib/src/tests/executor/blocking_executor_stress.cpp
@@ -33,7 +33,7 @@ struct MyTask : Executor::Task {
}
};
-TEST_MT_F("stress test block thread stack executor", 8, BlockingThreadStackExecutor(4, 128000, 1000))
+TEST_MT_F("stress test block thread stack executor", 8, BlockingThreadStackExecutor(4, 1000))
{
size_t loop_cnt = 100;
for (size_t i = 0; i < loop_cnt; ++i) {