summaryrefslogtreecommitdiff
path: root/jstests/sharding/coll_epoch_test0.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/coll_epoch_test0.js')
-rw-r--r--jstests/sharding/coll_epoch_test0.js25
1 files changed, 12 insertions, 13 deletions
diff --git a/jstests/sharding/coll_epoch_test0.js b/jstests/sharding/coll_epoch_test0.js
index 0ec0a5d3201..49fe99914a0 100644
--- a/jstests/sharding/coll_epoch_test0.js
+++ b/jstests/sharding/coll_epoch_test0.js
@@ -21,19 +21,18 @@ config.shards.find().forEach(function(doc) {
var createdEpoch = null;
var checkEpochs = function() {
- config.chunks.find({ns: coll + ""})
- .forEach(function(chunk) {
-
- // Make sure the epochs exist, are non-zero, and are consistent
- assert(chunk.lastmodEpoch);
- print(chunk.lastmodEpoch + "");
- assert.neq(chunk.lastmodEpoch + "", "000000000000000000000000");
- if (createdEpoch == null)
- createdEpoch = chunk.lastmodEpoch;
- else
- assert.eq(createdEpoch, chunk.lastmodEpoch);
-
- });
+ config.chunks.find({ns: coll + ""}).forEach(function(chunk) {
+
+ // Make sure the epochs exist, are non-zero, and are consistent
+ assert(chunk.lastmodEpoch);
+ print(chunk.lastmodEpoch + "");
+ assert.neq(chunk.lastmodEpoch + "", "000000000000000000000000");
+ if (createdEpoch == null)
+ createdEpoch = chunk.lastmodEpoch;
+ else
+ assert.eq(createdEpoch, chunk.lastmodEpoch);
+
+ });
};
checkEpochs();