Skip to content

Commit

Permalink
Update S3RepositoryThirdPartyTests
Browse files Browse the repository at this point in the history
Signed-off-by: Bhumika Saini <[email protected]>
  • Loading branch information
Bhumika Saini committed Oct 4, 2023
1 parent be0f389 commit 2be3691
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ protected void createRepository(String repoName) {
Settings.Builder settings = Settings.builder()
.put("bucket", System.getProperty("test.s3.bucket"))
.put("region", System.getProperty("test.s3.region", "us-west-2"))
.put("base_path", System.getProperty("test.s3.base", "testpath"));
.put("base_path", System.getProperty("test.s3.base", "testpath"))
.put("storage_class", "standard");
final String endpoint = System.getProperty("test.s3.endpoint");
if (endpoint != null) {
settings.put("endpoint", endpoint);
Expand Down

0 comments on commit 2be3691

Please sign in to comment.