You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/11/03 03:45:49 UTC

[maven-surefire] branch SUREFIRE-1707 created (now 8c95e45)

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

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


      at 8c95e45  [SUREFIRE-1707] Forked JVM is killed when GC paused the tests for over 30 seconds

This branch includes the following new commits:

     new 8c95e45  [SUREFIRE-1707] Forked JVM is killed when GC paused the tests for over 30 seconds

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-surefire] 01/01: [SUREFIRE-1707] Forked JVM is killed when GC paused the tests for over 30 seconds

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8c95e4528fdb89596edf0f9ef65523e7b8f21e98
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Nov 3 04:45:41 2019 +0100

    [SUREFIRE-1707] Forked JVM is killed when GC paused the tests for over 30 seconds
---
 .../src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 93deb20..3a05844 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
@@ -206,7 +206,7 @@ public final class ForkedBooter
             pingMechanisms.pingScheduler.scheduleWithFixedDelay( checkerJob, 0L, 1L, SECONDS );
         }
         Runnable pingJob = createPingJob( pingDone, pingMechanisms.pluginProcessChecker );
-        pingMechanisms.pingScheduler.scheduleAtFixedRate( pingJob, 0L, PING_TIMEOUT_IN_SECONDS, SECONDS );
+        pingMechanisms.pingScheduler.scheduleWithFixedDelay( pingJob, 0L, PING_TIMEOUT_IN_SECONDS, SECONDS );
 
         return pingMechanisms;
     }