PizzaFan

Results 1 comments of PizzaFan

A work around, depending on your application and test case, is to configure your client to not use chunked uploads: ` AmazonS3Client client = new AmazonS3Client(credentials); client.setEndpoint("http://localhost:1234"); client.setS3ClientOptions(S3ClientOptions.builder().setPathStyleAccess(true).disableChunkedEncoding().build()); ` It...