summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-01-05 11:27:50 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-01-13 11:46:18 +0000
commitaaddbc39b4c7024b3c12f2eb5ac627d482f6af42 (patch)
treee04fbad927064fb5e9590151cdadcaf5147e6099 /storage
parent888ca63a201a8d2e471a201eea127dc319a3fc8b (diff)
- Add support for using an unbound Q -> nonblocking.
- It uses a synchronized overflow Q if the main Q is full. - Long term it is the intention that the blocking option will be removed.
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/persistence/asynchandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/persistence/asynchandler.cpp b/storage/src/vespa/storage/persistence/asynchandler.cpp
index 3d24ee87879..5dafd9c5eda 100644
--- a/storage/src/vespa/storage/persistence/asynchandler.cpp
+++ b/storage/src/vespa/storage/persistence/asynchandler.cpp
@@ -113,7 +113,7 @@ class UnrevertableRemoveEntryProcessor : public BucketProcessor::EntryProcessor
public:
using DocumentIdsAndTimeStamps = std::vector<std::pair<spi::Timestamp, spi::DocumentId>>;
UnrevertableRemoveEntryProcessor(DocumentIdsAndTimeStamps & to_remove)
- : _to_remove(to_remove)
+ : _to_remove(to_remove)
{}
void process(spi::DocEntry& entry) override {