summaryrefslogtreecommitdiff
path: root/jstests/libs/trace_missing_docs.js
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2016-05-28 17:55:12 -0400
commit6dcdd23dd37ef12c87e71cf59ef01cd82432efe0 (patch)
treec8cfb5acb62c80f375bc37e7d4350382deea6a37 /jstests/libs/trace_missing_docs.js
parentd4ac5673ea3f6cef4ce9dbcec90e31813997a528 (diff)
downloadmongo-6dcdd23dd37ef12c87e71cf59ef01cd82432efe0.tar.gz
SERVER-23971 Clang-Format code
Diffstat (limited to 'jstests/libs/trace_missing_docs.js')
-rw-r--r--jstests/libs/trace_missing_docs.js12
1 files changed, 3 insertions, 9 deletions
diff --git a/jstests/libs/trace_missing_docs.js b/jstests/libs/trace_missing_docs.js
index 3bc9ef75333..d0052f55f6f 100644
--- a/jstests/libs/trace_missing_docs.js
+++ b/jstests/libs/trace_missing_docs.js
@@ -23,12 +23,8 @@ function traceMissingDoc(coll, doc, mongos) {
if (doc[k] == undefined) {
jsTest.log("Shard key " + tojson(shardKey) + " not found in doc " + tojson(doc) +
", falling back to _id search...");
- shardKeyPatt = {
- _id: 1
- };
- shardKey = {
- _id: doc['_id']
- };
+ shardKeyPatt = {_id: 1};
+ shardKey = {_id: doc['_id']};
break;
}
shardKey[k] = doc[k];
@@ -70,9 +66,7 @@ function traceMissingDoc(coll, doc, mongos) {
// Find ops
addToOps(oplog.find(addKeyQuery({op: 'i'}, 'o')));
- var updateQuery = {
- $or: [addKeyQuery({op: 'u'}, 'o2'), {op: 'u', 'o2._id': doc['_id']}]
- };
+ var updateQuery = {$or: [addKeyQuery({op: 'u'}, 'o2'), {op: 'u', 'o2._id': doc['_id']}]};
addToOps(oplog.find(updateQuery));
addToOps(oplog.find({op: 'd', 'o._id': doc['_id']}));
}