From 9d1ac190ffbeacfc6a243b4289ca2d70683c461c Mon Sep 17 00:00:00 2001 From: "J. Eric Ivancich" Date: Tue, 18 Mar 2025 14:31:05 -0400 Subject: [PATCH] rgw: fix regression in radoslist with SLO manifests A regression was inadvertently introduced in commit bcd7883d7212c96ebfb89c938c79fc7efbb80d2f that then prevented `radosgw-admin bucket radoslist ...` from working properly with buckets using SLO manifests. This corrects that regression. Signed-off-by: J. Eric Ivancich --- src/rgw/radosgw-admin/orphan.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/radosgw-admin/orphan.cc b/src/rgw/radosgw-admin/orphan.cc index 6f2f5371bdfcb..7808bf8ea61d3 100644 --- a/src/rgw/radosgw-admin/orphan.cc +++ b/src/rgw/radosgw-admin/orphan.cc @@ -992,7 +992,7 @@ int RGWRadosList::handle_stat_result(const DoutPrefixProvider *dpp, ldpp_dout(dpp, 25) << "radoslist DLO oid=\"" << oid << "\" added bucket=\"" << bucket_name << "\" prefix=\"" << prefix << "\" to process list" << dendl; - } else if ((attr_it = result.attrs.find(RGW_ATTR_USER_MANIFEST)) != + } else if ((attr_it = result.attrs.find(RGW_ATTR_SLO_MANIFEST)) != result.attrs.end()) { // *** handle SLO object *** -- 2.39.5