You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by ji...@apache.org on 2019/06/18 05:02:00 UTC

[incubator-druid] branch master updated: Set Test timeout higher for robust performance (#7890)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e80297e  Set Test timeout higher for robust performance (#7890)
e80297e is described below

commit e80297efef4d4949d736a3894cad015eb88a2106
Author: SandishKumarHN <sa...@gmail.com>
AuthorDate: Mon Jun 17 22:01:54 2019 -0700

    Set Test timeout higher for robust performance (#7890)
---
 .../java/org/apache/druid/server/SegmentManagerThreadSafetyTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/src/test/java/org/apache/druid/server/SegmentManagerThreadSafetyTest.java b/server/src/test/java/org/apache/druid/server/SegmentManagerThreadSafetyTest.java
index ab78689..649c8b2 100644
--- a/server/src/test/java/org/apache/druid/server/SegmentManagerThreadSafetyTest.java
+++ b/server/src/test/java/org/apache/druid/server/SegmentManagerThreadSafetyTest.java
@@ -123,7 +123,7 @@ public class SegmentManagerThreadSafetyTest
     FileUtils.deleteDirectory(segmentCacheDir);
   }
 
-  @Test(timeout = 5000L)
+  @Test(timeout = 6000L)
   public void testLoadSameSegment() throws IOException, ExecutionException, InterruptedException
   {
     final DataSegment segment = createSegment("2019-01-01/2019-01-02");
@@ -139,7 +139,7 @@ public class SegmentManagerThreadSafetyTest
     Assert.assertEquals(0, segmentLoader.getSegmentLocks().size());
   }
 
-  @Test(timeout = 5000L)
+  @Test(timeout = 6000L)
   public void testLoadMultipleSegments() throws IOException, ExecutionException, InterruptedException
   {
     final List<DataSegment> segments = new ArrayList<>(88);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org