summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/maintenancecontroller
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-08-23 20:37:44 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-08-23 20:37:44 +0000
commit0efc67578a8f0ef0d74e965ab156b618fea3fc5a (patch)
tree0b1b077e892ca6fb15e44c5d86c30c7ad3b703f1 /searchcore/src/tests/proton/documentdb/maintenancecontroller
parent784fb65ace3d28ee209720209626580b663becb3 (diff)
Only wait for th elids that you are interested in.
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/maintenancecontroller')
-rw-r--r--searchcore/src/tests/proton/documentdb/maintenancecontroller/maintenancecontroller_test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/searchcore/src/tests/proton/documentdb/maintenancecontroller/maintenancecontroller_test.cpp b/searchcore/src/tests/proton/documentdb/maintenancecontroller/maintenancecontroller_test.cpp
index daae29dabdc..272d1bfbd51 100644
--- a/searchcore/src/tests/proton/documentdb/maintenancecontroller/maintenancecontroller_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/maintenancecontroller/maintenancecontroller_test.cpp
@@ -386,12 +386,12 @@ public:
void syncSubDBs();
void commit() override { }
- void commitAndWait() override { }
- void commitAndWait(IPendingLidTracker &, uint32_t ) override {
- commitAndWait();
+ void commitAndWait(IPendingLidTracker & ) override { }
+ void commitAndWait(IPendingLidTracker & tracker, uint32_t ) override {
+ commitAndWait(tracker);
}
- void commitAndWait(IPendingLidTracker &, const std::vector<uint32_t> & ) override {
- commitAndWait();
+ void commitAndWait(IPendingLidTracker & tracker, const std::vector<uint32_t> & ) override {
+ commitAndWait(tracker);
}
void performSyncSubDBs();
void notifyClusterStateChanged();