summaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps/tests/persistenceconformance_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/apps/tests/persistenceconformance_test.cpp')
-rw-r--r--searchcore/src/apps/tests/persistenceconformance_test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/searchcore/src/apps/tests/persistenceconformance_test.cpp b/searchcore/src/apps/tests/persistenceconformance_test.cpp
index 52e2a314fd2..fad09101d95 100644
--- a/searchcore/src/apps/tests/persistenceconformance_test.cpp
+++ b/searchcore/src/apps/tests/persistenceconformance_test.cpp
@@ -34,7 +34,6 @@
#include <vespa/document/config/documenttypes_config_fwd.h>
#include <vespa/document/repo/documenttyperepo.h>
#include <vespa/document/test/make_bucket_space.h>
-#include <vespa/vespalib/util/size_literals.h>
#include <filesystem>
#include <vespa/log/log.h>
@@ -203,7 +202,7 @@ public:
_shared_service, _tls, _metricsWireService,
_fileHeaderContext, std::make_shared<search::attribute::Interlock>(),
_config_stores.getConfigStore(docType.toString()),
- std::make_shared<vespalib::ThreadStackExecutor>(16, 128_Ki), HwInfo());
+ std::make_shared<vespalib::ThreadStackExecutor>(16), HwInfo());
}
};
@@ -214,7 +213,7 @@ DocumentDBFactory::DocumentDBFactory(const vespalib::string &baseDir, int tlsLis
_tlsSpec(vespalib::make_string("tcp/localhost:%d", tlsListenPort)),
_queryLimiter(),
_metricsWireService(),
- _summaryExecutor(8, 128_Ki),
+ _summaryExecutor(8),
_shared_service(_summaryExecutor, _summaryExecutor),
_tls(_shared_service.transport(), "tls", tlsListenPort, baseDir, _fileHeaderContext)
{}