gnodet commented on PR #23021: URL: https://github.com/apache/camel/pull/23021#issuecomment-4479592013
The S3ConsumerIgnoreBodyIT failure is not related to this PR (no S3 files were touched here). The root cause is likely #23086 (CAMEL-23132: ListObjectsV2 migration) which made `contentType` return null in some cases, causing `Optional.of(contentType)` to throw NPE in `includeS3Object()`. This silently kills the consumer poll and causes the Awaitility timeout. This was already fixed in #23300 by changing `Optional.of` to `Optional.ofNullable`. _Claude Code on behalf of Guillaume Nodet_ -- 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]
