Skip to content

Commit 9d1ac19

Browse files
committed
rgw: fix regression in radoslist with SLO manifests
A regression was inadvertently introduced in commit bcd7883 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 <[email protected]>
1 parent 40fce9c commit 9d1ac19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rgw/radosgw-admin/orphan.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ int RGWRadosList::handle_stat_result(const DoutPrefixProvider *dpp,
992992
ldpp_dout(dpp, 25) << "radoslist DLO oid=\"" << oid <<
993993
"\" added bucket=\"" << bucket_name << "\" prefix=\"" <<
994994
prefix << "\" to process list" << dendl;
995-
} else if ((attr_it = result.attrs.find(RGW_ATTR_USER_MANIFEST)) !=
995+
} else if ((attr_it = result.attrs.find(RGW_ATTR_SLO_MANIFEST)) !=
996996
result.attrs.end()) {
997997
// *** handle SLO object ***
998998

0 commit comments

Comments
 (0)