From 31d51388ae528e6ca2c25dbf5f8cca51fbd98f44 Mon Sep 17 00:00:00 2001 From: Kaloian Manassiev Date: Wed, 19 Jan 2022 07:23:30 +0100 Subject: SERVER-62065 Fix linting error in 'configsvr_repair_sharded_collection_chunks_history_command.cpp' --- .../configsvr_repair_sharded_collection_chunks_history_command.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- cgit v1.2.1