mirror of https://github.com/apache/druid.git
update s3 calls to not use deprecated fns
This commit is contained in:
parent
2dc716bf7e
commit
1bd1bc98d1
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue