summaryrefslogtreecommitdiff
path: root/jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js
diff options
context:
space:
mode:
authorMatthew Saltz <matthew.saltz@mongodb.com>2020-04-15 11:43:47 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-15 18:50:42 +0000
commitcdd914a23e7d91e3d8989c9da38ffb558b20ada6 (patch)
tree55117587dd549b009b2e3a0e7ae8b22ab143ce9a /jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js
parent9f01fb4c7560fa4937a0fada1b4517fff6cc33dc (diff)
downloadmongo-cdd914a23e7d91e3d8989c9da38ffb558b20ada6.tar.gz
SERVER-43519 Remove unneeded TODO
Diffstat (limited to 'jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js')
-rw-r--r--jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js b/jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js
index 87583c78714..c4635268dba 100644
--- a/jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js
+++ b/jstests/sharding/txn_being_applied_to_secondary_cannot_be_killed.js
@@ -74,9 +74,8 @@ assert.commandWorked(session.commitTransaction_forTesting());
jsTest.log("Verify that the transaction was committed on all shards.");
// Use assert.soon(), because although coordinateCommitTransaction currently blocks
// until the commit process is fully complete, it will eventually be changed to only
-// block until the decision is *written*, at which point the test can pass the
-// operationTime returned by coordinateCommitTransaction as 'afterClusterTime' in the
-// read to ensure the read sees the transaction's writes (TODO SERVER-37165).
+// block until the decision is *written*, so the documents may not be visible
+// immediately.
assert.soon(function() {
return 3 === st.s.getDB(dbName).getCollection(collName).find().itcount();
});