summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage
diff options
context:
space:
mode:
authorDavid Hows <howsdav@gmail.com>2015-11-19 11:14:14 +1100
committerDavid Hows <howsdav@gmail.com>2015-11-19 11:16:36 +1100
commite2eff50dba9396769caac67c78c7e7cc2968029b (patch)
treed9a329b2b1690b9e40a4a9b433d28a86326b4d6e /src/mongo/db/storage
parent68dfaba3e86fbce302fa62f33b644d8b36944423 (diff)
downloadmongo-e2eff50dba9396769caac67c78c7e7cc2968029b.tar.gz
SERVER-20877 - fix linting errors
Diffstat (limited to 'src/mongo/db/storage')
-rw-r--r--src/mongo/db/storage/wiredtiger/wiredtiger_server_status.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_server_status.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_server_status.cpp
index aa47fa7bbb3..fc62b8d84f9 100644
--- a/src/mongo/db/storage/wiredtiger/wiredtiger_server_status.cpp
+++ b/src/mongo/db/storage/wiredtiger/wiredtiger_server_status.cpp
@@ -56,9 +56,9 @@ bool WiredTigerServerStatusSection::includeByDefault() const {
BSONObj WiredTigerServerStatusSection::generateSection(OperationContext* txn,
const BSONElement& configElement) const {
- // The session does not open a transaction here as one is not needed and opening one would
- // mean that execution could become blocked when a new transaction cannot be allocated
- // immediately.
+ // The session does not open a transaction here as one is not needed and opening one would
+ // mean that execution could become blocked when a new transaction cannot be allocated
+ // immediately.
WiredTigerSession* session = WiredTigerRecoveryUnit::get(txn)->getSessionNoTxn(txn);
invariant(session);