aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-03-18 17:13:06 +0100
committerGitHub <noreply@github.com>2022-03-18 17:13:06 +0100
commitf0c1612888321129bd781b5841573a9f84cb0478 (patch)
tree8cf79a2a510e046fd33dd848c251fa6985b26c37 /searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp
parentdf9dcfecf12e995052ae6be81f808c3d393bb7b9 (diff)
parent065ae62c0ad42589eaf33e4f06e8686111d5725c (diff)
Merge pull request #21743 from vespa-engine/toregge/use-atomic-uint32_t-for-commmitted-doc-id-limitv7.561.60
Use std::atomic<uint32_t> for committed doc id limit.
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp b/searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp
index 2e6a7087b69..5d2f358e4c8 100644
--- a/searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp
+++ b/searchcore/src/vespa/searchcore/proton/documentmetastore/documentmetastore.cpp
@@ -992,7 +992,7 @@ DocumentMetaStore::populateActiveBuckets(BucketId::List buckets)
}
void
-DocumentMetaStore::clearDocs(DocId lidLow, DocId lidLimit)
+DocumentMetaStore::clearDocs(DocId lidLow, DocId lidLimit, bool)
{
assert(lidLow <= lidLimit);
assert(lidLimit <= getNumDocs());