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=be1f82f94964fa9fb64f990bb471a4a1addb8b14;p=ceph.git missed internal, apparently invalid no-length exception case Signed-off-by: Matt Benjamin --- diff --git a/src/rgw/rgw_auth_s3.cc b/src/rgw/rgw_auth_s3.cc index da25b580d4a..8e243d89ce6 100644 --- a/src/rgw/rgw_auth_s3.cc +++ b/src/rgw/rgw_auth_s3.cc @@ -1074,7 +1074,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) {