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/07/17 20:52:54 UTC

[maven-surefire] branch buildfix updated (a70f106 -> c4f0ca7)

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

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


 discard a70f106  investigating build failure
     new c4f0ca7  investigating build failure

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (a70f106)
            \
             N -- N -- N   refs/heads/buildfix (c4f0ca7)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .../src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java     | 1 -
 1 file changed, 1 deletion(-)


[maven-surefire] 01/01: investigating build failure

Posted by ti...@apache.org.
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

commit c4f0ca7d0c119e25afa482aa2747e2ac04091c12
Author: tibordigana <ti...@apache.org>
AuthorDate: Wed Jul 17 22:48:20 2019 +0200

    investigating build failure
---
 .../src/main/java/org/apache/maven/surefire/booter/ForkedBooter.java | 5 ++---
 1 file changed, 2 insertions(+), 3 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 9602bcd..c503d18 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
@@ -42,7 +42,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
 
 import static java.lang.Thread.currentThread;
 import static java.util.concurrent.TimeUnit.MILLISECONDS;
-import static java.util.concurrent.TimeUnit.SECONDS;
 import static org.apache.maven.surefire.booter.SystemPropertyManager.setSystemProperties;
 import static org.apache.maven.surefire.util.ReflectionUtils.instantiateOneArg;
 import static org.apache.maven.surefire.util.internal.DaemonThreadFactory.newDaemonThreadFactory;
@@ -341,7 +340,7 @@ public final class ForkedBooter
     @SuppressWarnings( "checkstyle:emptyblock" )
     private void launchLastDitchDaemonShutdownThread( final int returnCode )
     {
-        getJvmTerminator().schedule( new Runnable()
+        /*getJvmTerminator().schedule( new Runnable()
                                         {
                                             @Override
                                             public void run()
@@ -349,7 +348,7 @@ public final class ForkedBooter
                                                 kill( returnCode );
                                             }
                                         }, systemExitTimeoutInSeconds, SECONDS
-        );
+        );*/
     }
 
     private void invokeProviderInSameClassLoader( ForkingReporterFactory factory )