kinolaev commented on PR #15792: URL: https://github.com/apache/iceberg/pull/15792#issuecomment-5303123591
`httpcore5` uses a locale-invariant format for the error message: ``` Premature end of Content-Length delimited message body (expected: %d; received: %d) ``` instead of the format used in `httpcore` (v4): ``` Premature end of Content-Length delimited message body (expected: %,d; received: %,d) ``` AWS SDK support for `httpcore5` has been [GA since 2.41.0](https://github.com/aws/aws-sdk-java-v2/blob/master/changelogs/2.41.x-CHANGELOG.md#2410-2025-12-30) and [the preferred default since 2.41.11](https://github.com/aws/aws-sdk-java-v2/blob/master/changelogs/2.41.x-CHANGELOG.md#24111-2026-01-20). I added support for the `httpcore5` format in 3f061208d5df467c9c9fccd4add651c1b3dc77fd. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
