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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new fb120a1  [MNG-6974] IT for MNG-5175 (Wagon HTTP) fails with JDK 14
fb120a1 is described below

commit fb120a1c28cd3feb53d9175594b12aecd74d70fb
Author: mickroll <mickr...@users.noreply.github.com>
AuthorDate: Tue Aug 4 08:57:13 2020 +0200

    [MNG-6974] IT for MNG-5175 (Wagon HTTP) fails with JDK 14
    
    Increase sleep timeout to avoid ephemeral race conditions.
    
    This closes #70
---
 .../src/test/java/org/apache/maven/it/MavenITmng5175WagonHttpTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5175WagonHttpTest.java
 
b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5175WagonHttpTest.java
index f163f70..73fab7e 100644
--- 
a/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5175WagonHttpTest.java
+++ 
b/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng5175WagonHttpTest.java
@@ -64,7 +64,8 @@ public class MavenITmng5175WagonHttpTest
             {
                 try
                 {
-                    Thread.sleep( 15 );
+                    // wait long enough for read timeout to happen in client
+                    Thread.sleep( 100 );
                 }
                 catch ( InterruptedException e )
                 {

Reply via email to