Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use correct s3 client based on bucket for import #1365

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ private void syncExecution() throws WebClientException, SQLException, TooManyRes
*/
private int syncWriteFileToSpace(Input input, long newVersion)
throws IOException, WebClientException, SQLException, TooManyResourcesClaimed {
final S3Client s3Client = S3Client.getInstance();
final S3Client s3Client = S3Client.getInstance(input.getS3Bucket());

InputStream inputStream = s3Client.streamObjectContent(input.getS3Key());
if (input.isCompressed())
Expand Down
Loading