From 2cd63c92776ded0b5b5a39e20e3981cc7ca3f018 Mon Sep 17 00:00:00 2001 From: lightmelodies Date: Thu, 9 Jan 2025 10:15:50 +0000 Subject: [PATCH] rgw/lc: make lc worker thread name shorter Fixes: https://tracker.ceph.com/issues/69459 Signed-off-by: lightmelodies (cherry picked from commit 05e241245744d105e285373bb9aa7861c62dcc18) --- src/rgw/rgw_lc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_lc.cc b/src/rgw/rgw_lc.cc index 74bc8b12c315..b09ec9a04b3b 100644 --- a/src/rgw/rgw_lc.cc +++ b/src/rgw/rgw_lc.cc @@ -2326,7 +2326,7 @@ void RGWLC::start_processor() for (int ix = 0; ix < maxw; ++ix) { auto worker = std::make_unique(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)); } } -- 2.47.3