update s3 calls to not use deprecated fns

This commit is contained in:
fjy 2013-10-16 13:21:54 -07:00
parent 2dc716bf7e
commit 1bd1bc98d1
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class S3DataSegmentPuller implements DataSegmentPuller
S3Object s3Obj = null;
try {
s3Obj = s3Client.getObject(new S3Bucket(s3Coords.bucket), s3Coords.path);
s3Obj = s3Client.getObject(s3Coords.bucket, s3Coords.path);
InputStream in = null;
try {