From e2eff50dba9396769caac67c78c7e7cc2968029b Mon Sep 17 00:00:00 2001 From: David Hows Date: Thu, 19 Nov 2015 11:14:14 +1100 Subject: [PATCH] SERVER-20877 - fix linting errors --- .../db/storage/wiredtiger/wiredtiger_server_status.cpp | 6 +++--- 1 file 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 aa47fa7bbb3d0..fc62b8d84f91c 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);