Skip to content

Commit d9c4ecd

Browse files
authored
Merge pull request ceph#61277 from lightmelodies/rgw
rgw/lc: make lc worker thread name shorter Reviewed-by: Daniel Gryniewicz <[email protected]>
2 parents b40036b + 05e2412 commit d9c4ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rgw/rgw_lc.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2462,7 +2462,7 @@ void RGWLC::start_processor()
24622462
for (int ix = 0; ix < maxw; ++ix) {
24632463
auto worker =
24642464
std::make_unique<RGWLC::LCWorker>(this /* dpp */, cct, this, ix);
2465-
worker->create((string{"lifecycle_thr_"} + to_string(ix)).c_str());
2465+
worker->create((string{"rgw_lc_"} + to_string(ix)).c_str());
24662466
workers.emplace_back(std::move(worker));
24672467
}
24682468
}

0 commit comments

Comments
 (0)