Skip to content

Commit

Permalink
remove useless sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
007DXR committed Jul 17, 2023
1 parent ad0f36d commit 109eaa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@
public class CreateBucketTest extends RestApiTest {

private static final String TEST_BUCKET = "test-bucket";
private static final int UFS_PORT = 8002;
private AmazonS3 mS3Client = null;
@Rule
public S3ProxyRule mS3Proxy = S3ProxyRule.builder()
.withBlobStoreProvider("transient")
.withPort(8002)
.withPort(UFS_PORT)
.withCredentials("_", "_")
.build();

Expand All @@ -49,7 +50,7 @@ public class CreateBucketTest extends RestApiTest {
.setProperty(PropertyKey.USER_FILE_WRITE_TYPE_DEFAULT, WriteType.CACHE_THROUGH)
.setProperty(PropertyKey.WORKER_BLOCK_STORE_TYPE, "PAGE")
.setProperty(PropertyKey.WORKER_PAGE_STORE_PAGE_SIZE, Constants.KB)
.setProperty(PropertyKey.UNDERFS_S3_ENDPOINT, "localhost:8002")
.setProperty(PropertyKey.UNDERFS_S3_ENDPOINT, "localhost:" + UFS_PORT)
.setProperty(PropertyKey.UNDERFS_S3_ENDPOINT_REGION, "us-west-2")
.setProperty(PropertyKey.UNDERFS_S3_DISABLE_DNS_BUCKETS, true)
.setProperty(PropertyKey.MASTER_MOUNT_TABLE_ROOT_UFS, "s3://" + TEST_BUCKET)
Expand Down
1 change: 0 additions & 1 deletion dora/tests/src/test/java/alluxio/client/rest/TestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ public URL createURL() throws Exception {
}

/**
* @param connection the HttpURLConnection
* @return the String from the InputStream of HttpURLConnection
*/
public String getResponse() throws Exception {
Expand Down

0 comments on commit 109eaa1

Please sign in to comment.