summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2018-06-14 09:39:58 -0400
committerAndrew Morrow <acm@mongodb.com>2018-06-14 10:27:53 -0400
commit8755c4be08d5ba34da5667181f1d1cbb650d7338 (patch)
treefe5b4a7cf097c393760db796e49666c7a501b3f9
parent7fb0ba7016a7af44532f49088bcf698ac3815860 (diff)
downloadmongo-8755c4be08d5ba34da5667181f1d1cbb650d7338.tar.gz
SERVER-35589 Fix shutdown message typo
(cherry picked from commit 974f797ad122c49ccae0dc96fad3dcf49b9b64bf)
-rw-r--r--src/mongo/executor/connection_pool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/executor/connection_pool.cpp b/src/mongo/executor/connection_pool.cpp
index 1e5bd0afd43..4cc246e2a35 100644
--- a/src/mongo/executor/connection_pool.cpp
+++ b/src/mongo/executor/connection_pool.cpp
@@ -316,7 +316,7 @@ void ConnectionPool::shutdown() {
for (const auto& pool : pools) {
stdx::unique_lock<stdx::mutex> lk(_mutex);
pool->processFailure(
- Status(ErrorCodes::ShutdownInProgress, "Shuting down the connection pool"),
+ Status(ErrorCodes::ShutdownInProgress, "Shutting down the connection pool"),
std::move(lk));
}
}