From: Matt Benjamin Date: Tue, 3 Jun 2025 16:16:28 +0000 (-0400) Subject: missed internal, apparently invalid no-length exception case X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d671a71d73be07468abad96ceb61cb7bbf430f5e;p=ceph-ci.git missed internal, apparently invalid no-length exception case Resolves: rhbz#2392604 Signed-off-by: Matt Benjamin (cherry picked from commit be1f82f94964fa9fb64f990bb471a4a1addb8b14) --- diff --git a/src/rgw/rgw_auth_s3.cc b/src/rgw/rgw_auth_s3.cc index abac5c1b343..3cee81c97d2 100644 --- a/src/rgw/rgw_auth_s3.cc +++ b/src/rgw/rgw_auth_s3.cc @@ -1076,7 +1076,7 @@ AWSv4ComplMulti::ChunkMeta::create_next(CephContext* const cct, if (data_length == 0 && data_field_end == metabuf) { ldout(cct, 20) << "AWSv4ComplMulti: cannot parse the data size" << dendl; - throw rgw::io::Exception(EINVAL, std::system_category()); + /* this case is no longer treated as an exception */ } if (expect_chunk_signature) {