Skip to content

Commit

Permalink
#221 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
max402 committed Sep 24, 2024
1 parent a6df36c commit 9d3b489
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private AbsoluteLocation<PrivateResource> getPrivateResourceAbsoluteLocation(DFS
}
if (dfsCredentials instanceof AmazonS3DFSCredentials) {
AmazonS3DFSCredentials a = (AmazonS3DFSCredentials) dfsCredentials;
return new AbsoluteLocation<>(BasePrivateResource.forPrivate(new URI(a.getUrl() + "/" + a.getRootBucket())));
return new AbsoluteLocation<>(BasePrivateResource.forPrivate(new URI(a.getUrl() + "/" + a.getRegion() + "/" + a.getRootBucket())));
}
throw new TestException("NYI");
}
Expand Down

0 comments on commit 9d3b489

Please sign in to comment.