summaryrefslogtreecommitdiff
path: root/jstests/hooks
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2017-10-05 14:49:08 -0400
committerLouis Williams <louis.williams@mongodb.com>2017-10-09 15:08:14 -0400
commiteb25a8afdba7f0e8909075bab62b1509b697296c (patch)
tree8fefdd6d0921e2e3d6e22bd604364237ab3116cc /jstests/hooks
parent107858d4d2ffd9f0690def5108898a8b4be70350 (diff)
downloadmongo-eb25a8afdba7f0e8909075bab62b1509b697296c.tar.gz
SERVER-30161 Remove enableUUIDs server parameter
Diffstat (limited to 'jstests/hooks')
-rw-r--r--jstests/hooks/run_check_repl_dbhash.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/hooks/run_check_repl_dbhash.js b/jstests/hooks/run_check_repl_dbhash.js
index 1afea4a8539..2bf57647ac1 100644
--- a/jstests/hooks/run_check_repl_dbhash.js
+++ b/jstests/hooks/run_check_repl_dbhash.js
@@ -86,7 +86,7 @@
var testFixture = isMasterSlave ? new MasterSlaveDBHashTest(db.getMongo().host)
: new ReplSetTest(db.getMongo().host);
var excludedDBs = jsTest.options().excludedDBsFromDBHash || [];
- testFixture.checkReplicatedDataHashes(undefined, excludedDBs);
+ testFixture.checkReplicatedDataHashes(undefined, excludedDBs, true /* skip UUID check */);
var totalTime = Date.now() - startTime;
print('Finished consistency checks of cluster in ' + totalTime + ' ms.');