summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKshitij Gupta <kshitij.gupta@mongodb.com>2021-12-21 16:07:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-12-29 01:30:33 +0000
commit873f3bc7b110c74db6a0558c0d07e2c34ba47f8c (patch)
tree7098fb798aa8d28e1c8bd4c2f7186e330df2c794
parent0df763f17ddd90f18195da80512a96e4f45409fe (diff)
downloadmongo-873f3bc7b110c74db6a0558c0d07e2c34ba47f8c.tar.gz
SERVER-62203: rename thread name
(cherry picked from commit 7a8a42f465f2ac2cb05904b25fc91dff087c82cf)
-rw-r--r--src/mongo/db/process_health/progress_monitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/process_health/progress_monitor.cpp b/src/mongo/db/process_health/progress_monitor.cpp
index 5eecd886cce..9b461106843 100644
--- a/src/mongo/db/process_health/progress_monitor.cpp
+++ b/src/mongo/db/process_health/progress_monitor.cpp
@@ -123,7 +123,7 @@ void ProgressMonitor::progressMonitorCheck(std::function<void(std::string cause)
}
void ProgressMonitor::_progressMonitorLoop() {
- Client::initThread("Health checks progress monitor"_sd, _svcCtx, nullptr);
+ Client::initThread("FaultManagerProgressMonitor"_sd, _svcCtx, nullptr);
while (!_terminate.load()) {
progressMonitorCheck(_crashCb);