]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw/lc: make lc worker thread name shorter 61277/head
authorlightmelodies <lightmelodies@outlook.com>
Thu, 9 Jan 2025 10:15:50 +0000 (10:15 +0000)
committerlightmelodies <lightmelodies@outlook.com>
Thu, 9 Jan 2025 10:15:50 +0000 (10:15 +0000)
Fixes: https://tracker.ceph.com/issues/69459
Signed-off-by: lightmelodies <lightmelodies@outlook.com>
src/rgw/rgw_lc.cc

index c9fb4765d59d728cab1bf0943b0c0862644f2700..bebfd7ae2e75a6d72cf5968ec4e787123bb5d889 100644 (file)
@@ -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));
   }
 }