From: Casey Bodley Date: Mon, 13 Mar 2017 15:33:02 +0000 (-0400) Subject: rgw: RGWGetObj applies skip_manifest flag to SLO X-Git-Tag: v12.0.2~279^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=987377ae34382e107e1d54f0bfc1121fcedb4513;p=ceph.git rgw: RGWGetObj applies skip_manifest flag to SLO Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_op.cc b/src/rgw/rgw_op.cc index a209eb06ad1..18d613890a9 100644 --- a/src/rgw/rgw_op.cc +++ b/src/rgw/rgw_op.cc @@ -1456,7 +1456,7 @@ void RGWGetObj::execute() return; } attr_iter = attrs.find(RGW_ATTR_SLO_MANIFEST); - if (attr_iter != attrs.end()) { + if (attr_iter != attrs.end() && !skip_manifest) { is_slo = true; op_ret = handle_slo_manifest(attr_iter->second); if (op_ret < 0) {