]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw/lc: make lc worker thread name shorter 61485/head
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:54:08 +0000 (10:54 -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 74bc8b12c3155f8199b7fc09ce0f43342383738c..b09ec9a04b3b31cdfc1c6f5264d5aa4b8a0b5d94 100644 (file)
@@ -2326,7 +2326,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));
   }
 }