summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2022-01-19 07:23:30 +0100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-01-19 07:19:47 +0000
commit31d51388ae528e6ca2c25dbf5f8cca51fbd98f44 (patch)
treee3c260c680a4e4b38ce1d44e034bcea18661bcfa
parent3b56acfe78e91b607eafc737ebf88d237db1460a (diff)
downloadmongo-31d51388ae528e6ca2c25dbf5f8cca51fbd98f44.tar.gz
SERVER-62065 Fix linting error in 'configsvr_repair_sharded_collection_chunks_history_command.cpp'
-rw-r--r--src/mongo/db/s/config/configsvr_repair_sharded_collection_chunks_history_command.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/s/config/configsvr_repair_sharded_collection_chunks_history_command.cpp b/src/mongo/db/s/config/configsvr_repair_sharded_collection_chunks_history_command.cpp
index 138c66d4385..29327d8871c 100644
--- a/src/mongo/db/s/config/configsvr_repair_sharded_collection_chunks_history_command.cpp
+++ b/src/mongo/db/s/config/configsvr_repair_sharded_collection_chunks_history_command.cpp
@@ -96,7 +96,8 @@ public:
repl::ReadConcernArgs(repl::ReadConcernLevel::kLocalReadConcern);
uassert(ErrorCodes::InvalidOptions,
- str::stream() << "_configsvrRepairShardedCollectionChunksHistory must be called with majority writeConcern, got "
+ str::stream() << "_configsvrRepairShardedCollectionChunksHistory must be called "
+ "with majority writeConcern, got "
<< cmdObj,
opCtx->getWriteConcern().wMode == WriteConcernOptions::kMajority);