aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-12-08 23:55:21 +0100
committerGitHub <noreply@github.com>2022-12-08 23:55:21 +0100
commit0f15b405cad738460a8126bf9ef689ec3edfd094 (patch)
treeca54173403ceb088b109649ee899f919411b48cf /searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp
parentc08e5c59f4162ee7ec1c8038e0e884486b8e8a62 (diff)
parente4c5580f64be5934d6b7690efc719d542c5be526 (diff)
Merge pull request #25178 from vespa-engine/balder/provide-sessionmanager-via-idocumentsubdbownerv8.97.26
Wire SessionManager via IDocumentSubDBOwner
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp b/searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp
index e7685624f55..103234f7529 100644
--- a/searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/documentsubdbcollection.cpp
@@ -12,7 +12,6 @@
#include <vespa/vespalib/util/lambdatask.h>
#include <vespa/vespalib/util/threadstackexecutor.h>
-using proton::matching::SessionManager;
using search::GrowStrategy;
using search::SerialNum;
using search::index::Schema;
@@ -184,11 +183,10 @@ DocumentSubDBCollection::createInitializer(const DocumentDBConfig &configSnapsho
void
-DocumentSubDBCollection::initViews(const DocumentDBConfig &configSnapshot,
- const SessionManager::SP &sessionManager)
+DocumentSubDBCollection::initViews(const DocumentDBConfig &configSnapshot)
{
for (auto subDb : _subDBs) {
- subDb->initViews(configSnapshot, sessionManager);
+ subDb->initViews(configSnapshot);
}
}