This is an automated email from the ASF dual-hosted git repository.
mayanks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 7fd2110 Disable S3MockListner in S3PinotFSTest. (#5292)
7fd2110 is described below
commit 7fd2110de66c2bb0b49ee340bac492fafe1f0693
Author: Mayank Shrivastava <[email protected]>
AuthorDate: Thu Apr 23 11:44:15 2020 -0700
Disable S3MockListner in S3PinotFSTest. (#5292)
We have been running into build failures with this test. Disabling the
test did not help as the failure was actually coming from the S3MockListner
that tries to start S3Mock (and fails with port already in use). Given that
there is no api to choose port to start S3Mock at, we are temporarily
disabling
the test and unregistering this listener.
---
.../test/java/org/apache/pinot/plugin/filesystem/S3PinotFSTest.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/pinot-plugins/pinot-file-system/pinot-s3/src/test/java/org/apache/pinot/plugin/filesystem/S3PinotFSTest.java
b/pinot-plugins/pinot-file-system/pinot-s3/src/test/java/org/apache/pinot/plugin/filesystem/S3PinotFSTest.java
index 5f173f3..421ea68 100644
---
a/pinot-plugins/pinot-file-system/pinot-s3/src/test/java/org/apache/pinot/plugin/filesystem/S3PinotFSTest.java
+++
b/pinot-plugins/pinot-file-system/pinot-s3/src/test/java/org/apache/pinot/plugin/filesystem/S3PinotFSTest.java
@@ -31,7 +31,6 @@ import org.apache.commons.io.IOUtils;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
-import org.testng.annotations.Listeners;
import org.testng.annotations.Test;
import software.amazon.awssdk.core.sync.RequestBody;
import software.amazon.awssdk.services.s3.S3Client;
@@ -42,7 +41,7 @@ import software.amazon.awssdk.services.s3.model.S3Object;
@Test(enabled = false)
-@Listeners(com.adobe.testing.s3mock.testng.S3MockListener.class)
+//@Listeners(com.adobe.testing.s3mock.testng.S3MockListener.class)
public class S3PinotFSTest {
final String DELIMITER = "/";
S3PinotFS _s3PinotFS;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]