You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/01/30 02:02:27 UTC

[incubator-pulsar] branch master updated: Add timeouts to setup & teardown for ReplicatorTest (#1139)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a2b2f0  Add timeouts to setup & teardown for ReplicatorTest (#1139)
8a2b2f0 is described below

commit 8a2b2f0389554e0cf32960e175686a87e170e4a2
Author: Matteo Merli <mm...@apache.org>
AuthorDate: Mon Jan 29 18:02:24 2018 -0800

    Add timeouts to setup & teardown for ReplicatorTest (#1139)
---
 .../test/java/org/apache/pulsar/broker/service/ReplicatorTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ReplicatorTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ReplicatorTest.java
index e6d6498..25098a9 100644
--- a/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ReplicatorTest.java
+++ b/pulsar-broker/src/test/java/org/apache/pulsar/broker/service/ReplicatorTest.java
@@ -81,13 +81,13 @@ import org.testng.collections.Lists;
 public class ReplicatorTest extends ReplicatorTestBase {
 
     @Override
-    @BeforeClass
+    @BeforeClass(timeOut = 30000)
     void setup() throws Exception {
         super.setup();
     }
 
     @Override
-    @AfterClass
+    @AfterClass(timeOut = 30000)
     void shutdown() throws Exception {
         super.shutdown();
     }

-- 
To stop receiving notification emails like this one, please contact
mmerli@apache.org.