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

tibordigana pushed a commit to branch buildfix
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/buildfix by this push:
     new 6a442eb  investigating build failure
6a442eb is described below

commit 6a442ebb80f9ddf888e2a2d8f9e6179f12738172
Author: tibordigana <[email protected]>
AuthorDate: Wed Jul 17 01:01:02 2019 +0200

    investigating build failure
---
 .../src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
 
b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
index 248fc37..de4642f 100644
--- 
a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
+++ 
b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java
@@ -422,8 +422,8 @@ public final class ForkedBooter
     private static ScheduledExecutorService createPingScheduler()
     {
         ThreadFactory threadFactory = newDaemonThreadFactory( PING_THREAD + 
PING_TIMEOUT_IN_SECONDS + "s" );
-        ScheduledThreadPoolExecutor executor = new 
ScheduledThreadPoolExecutor( 1, threadFactory );
-        executor.setKeepAliveTime( 3L, SECONDS );
+        ScheduledThreadPoolExecutor executor = new 
ScheduledThreadPoolExecutor( 2, threadFactory );
+        //executor.setKeepAliveTime( 3L, SECONDS );
         executor.setMaximumPoolSize( 2 );
         return executor;
     }

Reply via email to