summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_lc.cc
diff options
context:
space:
mode:
authorlightmelodies <lightmelodies@outlook.com>2025-01-09 11:15:50 +0100
committerlightmelodies <lightmelodies@outlook.com>2025-01-09 11:15:50 +0100
commit05e241245744d105e285373bb9aa7861c62dcc18 (patch)
tree36beeb709ddf8bcf38fd7681d5a3e6e528be2d97 /src/rgw/rgw_lc.cc
parentMerge pull request #60848 from cbodley/wip-rgw-deprecate-iam-tenant (diff)
downloadceph-05e241245744d105e285373bb9aa7861c62dcc18.tar.xz
ceph-05e241245744d105e285373bb9aa7861c62dcc18.zip
rgw/lc: make lc worker thread name shorter
Fixes: https://tracker.ceph.com/issues/69459 Signed-off-by: lightmelodies <lightmelodies@outlook.com>
Diffstat (limited to '')
-rw-r--r--src/rgw/rgw_lc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_lc.cc b/src/rgw/rgw_lc.cc
index c9fb4765d59..bebfd7ae2e7 100644
--- a/src/rgw/rgw_lc.cc
+++ b/src/rgw/rgw_lc.cc
@@ -2462,7 +2462,7 @@ void RGWLC::start_processor()
for (int ix = 0; ix < maxw; ++ix) {
auto worker =
std::make_unique<RGWLC::LCWorker>(this /* dpp */, cct, this, ix);
- worker->create((string{"lifecycle_thr_"} + to_string(ix)).c_str());
+ worker->create((string{"rgw_lc_"} + to_string(ix)).c_str());
workers.emplace_back(std::move(worker));
}
}