]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw/lc: make lc worker thread name shorter
authorlightmelodies <lightmelodies@outlook.com>
Thu, 9 Jan 2025 10:15:50 +0000 (10:15 +0000)
committerJ. Eric Ivancich <ivancich@redhat.com>
Wed, 22 Jan 2025 15:53:35 +0000 (10:53 -0500)
Fixes: https://tracker.ceph.com/issues/69459
Signed-off-by: lightmelodies <lightmelodies@outlook.com>
(cherry picked from commit 05e241245744d105e285373bb9aa7861c62dcc18)

src/rgw/rgw_lc.cc

index 43c77ba23eefbc9a195b4680ead96ef08df9ce02..8426894b231c45398c951e98f93efb6e38a5eb11 100644 (file)
@@ -2467,7 +2467,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));
   }
 }