diff options
author | Judah Schvimer <judah@mongodb.com> | 2018-06-12 14:13:45 -0400 |
---|---|---|
committer | Daniel Gottlieb <daniel.gottlieb@mongodb.com> | 2018-06-12 14:14:15 -0400 |
commit | 8b698cac2d19f0fec502db10501e7059a10d2897 (patch) | |
tree | e94c6c155f46664f9e04ef479144645e9ef90309 /jstests/replsets/rollback_transaction_table.js | |
parent | a6cc895fa631e29e8c7ee6ec61a6b7a21a370bf3 (diff) | |
download | mongo-8b698cac2d19f0fec502db10501e7059a10d2897.tar.gz |
SERVER-34977 SERVER-35435 SERVER-34976 Fix fastcounts for RTT, including capped collections.
Diffstat (limited to 'jstests/replsets/rollback_transaction_table.js')
-rw-r--r-- | jstests/replsets/rollback_transaction_table.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/replsets/rollback_transaction_table.js b/jstests/replsets/rollback_transaction_table.js index 619b6a578b1..af32b327a88 100644 --- a/jstests/replsets/rollback_transaction_table.js +++ b/jstests/replsets/rollback_transaction_table.js @@ -225,8 +225,9 @@ assert.eq(upstream.getDB("config").transactions.find().itcount(), 2); // Confirm the nodes are consistent. - replTest.checkReplicatedDataHashes(testName); replTest.checkOplogs(); + replTest.checkReplicatedDataHashes(testName); + replTest.checkCollectionCounts(); replTest.stopSet(); }()); |