fuatbasik commented on code in PR #13387: URL: https://github.com/apache/iceberg/pull/13387#discussion_r2219606349
########## aws/src/integration/java/org/apache/iceberg/aws/s3/TestFlakyS3InputStream.java: ########## @@ -138,6 +230,14 @@ private S3ClientWrapper flakyStreamClient(AtomicInteger counter, IOException fai return flakyClient; } + private S3AsyncClientWrapper flakyStreamAsyncClient(AtomicInteger counter, IOException failure) { + S3AsyncClientWrapper flakyClient = spy(new S3AsyncClientWrapper(s3AsyncClient())); + doAnswer(invocation -> new FlakyInputStream(invocation.callRealMethod(), counter, failure)) Review Comment: Hi @stubz151 . I fixed the stubs with async client related changes. Now all tests with Async client are working as expected. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org