RealTYPICAL
Results
1
comments of
RealTYPICAL
This reproduced the issue consistently for me: ```java S3AsyncClient s3AsyncClient = S3AsyncClient.create(); Thread thread = new Thread(() -> s3AsyncClient.copyObject(CopyObjectRequest.builder().build())); thread.interrupt(); thread.start(); thread.join(); ``` I would expect this to throw an...