summaryrefslogtreecommitdiff
path: root/jstests/replsets/rollback_transaction_table.js
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2018-06-12 14:13:45 -0400
committerDaniel Gottlieb <daniel.gottlieb@mongodb.com>2018-06-12 14:14:15 -0400
commit8b698cac2d19f0fec502db10501e7059a10d2897 (patch)
treee94c6c155f46664f9e04ef479144645e9ef90309 /jstests/replsets/rollback_transaction_table.js
parenta6cc895fa631e29e8c7ee6ec61a6b7a21a370bf3 (diff)
downloadmongo-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.js3
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();
}());