summaryrefslogtreecommitdiff
path: root/jstests/replsets/system_profile_secondary.js
diff options
context:
space:
mode:
authorclang-format-7.0.1 <adam.martin@10gen.com>2019-07-26 18:20:35 -0400
committerADAM David Alan Martin <adam.martin@10gen.com>2019-07-27 11:02:23 -0400
commit134a4083953270e8a11430395357fb70a29047ad (patch)
treedd428e1230e31d92b20b393dfdc17ffe7fa79cb6 /jstests/replsets/system_profile_secondary.js
parent1e46b5049003f427047e723ea5fab15b5a9253ca (diff)
downloadmongo-134a4083953270e8a11430395357fb70a29047ad.tar.gz
SERVER-41772 Apply clang-format 7.0.1 to the codebase
Diffstat (limited to 'jstests/replsets/system_profile_secondary.js')
-rw-r--r--jstests/replsets/system_profile_secondary.js34
1 files changed, 16 insertions, 18 deletions
diff --git a/jstests/replsets/system_profile_secondary.js b/jstests/replsets/system_profile_secondary.js
index 7c62e126323..954ec0bf523 100644
--- a/jstests/replsets/system_profile_secondary.js
+++ b/jstests/replsets/system_profile_secondary.js
@@ -1,26 +1,24 @@
// This tests that we can successfully profile queries on secondaries.
(function() {
- 'use strict';
- var rst = new ReplSetTest({nodes: 2});
- rst.startSet();
- rst.initiate();
- rst.awaitReplication();
+'use strict';
+var rst = new ReplSetTest({nodes: 2});
+rst.startSet();
+rst.initiate();
+rst.awaitReplication();
- var secondaryDB = rst.getSecondary().getDB('test');
+var secondaryDB = rst.getSecondary().getDB('test');
- jsTestLog('Enable profiling on the secondary');
- assert.commandWorked(secondaryDB.runCommand({profile: 2}));
+jsTestLog('Enable profiling on the secondary');
+assert.commandWorked(secondaryDB.runCommand({profile: 2}));
- jsTestLog('Perform a query that returns no results, but will get profiled.');
- secondaryDB.doesntexist.find({}).itcount();
+jsTestLog('Perform a query that returns no results, but will get profiled.');
+secondaryDB.doesntexist.find({}).itcount();
- let numProfileEntries = (coll) =>
- coll.getDB()
- .system.profile.find({op: 'query', ns: coll.getFullName(), nreturned: 0})
- .itcount();
+let numProfileEntries = (coll) =>
+ coll.getDB().system.profile.find({op: 'query', ns: coll.getFullName(), nreturned: 0}).itcount();
- jsTestLog('Check the query is in the profile and turn profiling off.');
- assert.eq(numProfileEntries(secondaryDB.doesntexist), 1, 'expected a single profile entry');
- assert.commandWorked(secondaryDB.runCommand({profile: 0}));
- rst.stopSet();
+jsTestLog('Check the query is in the profile and turn profiling off.');
+assert.eq(numProfileEntries(secondaryDB.doesntexist), 1, 'expected a single profile entry');
+assert.commandWorked(secondaryDB.runCommand({profile: 0}));
+rst.stopSet();
})();