From be1f82f94964fa9fb64f990bb471a4a1addb8b14 Mon Sep 17 00:00:00 2001 From: Matt Benjamin Date: Tue, 3 Jun 2025 12:16:28 -0400 Subject: [PATCH] missed internal, apparently invalid no-length exception case Signed-off-by: Matt Benjamin --- src/rgw/rgw_auth_s3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rgw/rgw_auth_s3.cc b/src/rgw/rgw_auth_s3.cc index da25b580d4ae..8e243d89ce6e 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) { -- 2.47.3