summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zhang <jason.zhang@mongodb.com>2022-08-17 15:51:18 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-24 15:10:25 +0000
commit0c797d4dfe3fc7730f813e31afd40efa0e3b8261 (patch)
tree21658e6661fe95960e6a18b3b621729348036b57
parentbd958b2eb85837e8460d257fe7f34c12d2a55789 (diff)
downloadmongo-0c797d4dfe3fc7730f813e31afd40efa0e3b8261.tar.gz
SERVER-68886 Remove extra call to addEagerlyReapedSession in internal transactions reap service unittest
(cherry picked from commit 96debbaa3974a4c2cea4d79ddc4bd2765ad70351)
-rw-r--r--src/mongo/db/internal_transactions_reap_service_test.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/db/internal_transactions_reap_service_test.cpp b/src/mongo/db/internal_transactions_reap_service_test.cpp
index 0e9d956b627..58af1192445 100644
--- a/src/mongo/db/internal_transactions_reap_service_test.cpp
+++ b/src/mongo/db/internal_transactions_reap_service_test.cpp
@@ -241,7 +241,6 @@ TEST_F(InternalTransactionsReapServiceTest, CanReapMultipleRounds) {
auto lsidToReachThreshold = generateLsids(1);
insertSessionDocuments(lsidToReachThreshold);
reapService()->addEagerlyReapedSessions(getServiceContext(), lsidToReachThreshold);
- reapService()->addEagerlyReapedSessions(getServiceContext(), lsidToReachThreshold);
reapService()->waitForCurrentDrain_forTest();
assertNoPersistedSessions();
};