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

AWS S3 and Alternative S3 destination connector feature #4038

Merged
merged 7 commits into from
Jun 13, 2021
Merged
Changes from 1 commit
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 @@ -74,7 +74,7 @@ public static S3Config getS3Config(JsonNode config) {
partSize = config.get("part_size").asInt();
}
return new S3Config(
config.get("s3_endpoint").asText(),
config.get("s3_endpoint") == null ? "" : config.get("s3_endpoint").asText()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tuliren did you forget ","

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, you are right.

config.get("s3_bucket_name").asText(),
config.get("access_key_id").asText(),
config.get("secret_access_key").asText(),
Expand Down