summaryrefslogtreecommitdiff
path: root/src/mongo/s
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2018-03-12 17:06:10 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2018-03-12 17:06:10 -0400
commitfd954412dfc10e4d1e3e2dd4fac040f8b476b268 (patch)
treec71284d4152d4785e1dd173bbe336d90c666f389 /src/mongo/s
parentba7e3424c4c3dadd3bc8cc16214e2d12e93043e9 (diff)
downloadmongo-4f652553533caee3a1b546bb41b5d396cefe115f.tar.gz
SERVER-28495 Fix lintr3.4.14-rc0r3.4.14
Diffstat (limited to 'src/mongo/s')
-rw-r--r--src/mongo/s/commands/cluster_ftdc_commands.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/s/commands/cluster_ftdc_commands.cpp b/src/mongo/s/commands/cluster_ftdc_commands.cpp
index b0055f7d6be..12021e98f6d 100644
--- a/src/mongo/s/commands/cluster_ftdc_commands.cpp
+++ b/src/mongo/s/commands/cluster_ftdc_commands.cpp
@@ -100,8 +100,7 @@ public:
BSONObjBuilder& result) override {
result.append(
- "data",
- FTDCController::get(txn->getServiceContext())->getMostRecentPeriodicDocument());
+ "data", FTDCController::get(txn->getServiceContext())->getMostRecentPeriodicDocument());
return true;
}