“ConnectionPoolTimeoutException” when iterating objects in S3
I've been working for some time with aws java API with not so many problems. Currently I'm using the library 1.5.2 version. When I'm iterating the objects inside a folder with the following code: AmazonS3 s3 = new AmazonS3Client(new PropertiesCredentials(MyClass.class.getResourceAsStream("AwsCredentials.properties"))); String s3Key = "folder1/folder2"; String bucketName = Constantes.S3_BUCKET; String key = s3Key +"/input_chopped/"; ObjectListing current = s3.listObjects(new ListObjectsRequest() .withBucketName(bucketName) .withPrefix(key)); boolean siguiente = true; while (siguiente) {