You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2022/09/30 15:28:39 UTC

[httpcomponents-client] branch 5.1.x updated (6f558ae6b -> b6e3a09f9)

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

olegk pushed a change to branch 5.1.x
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


 discard 6f558ae6b Be more lenient on slower build machines
     new b6e3a09f9 Be more lenient on slower build machines

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   (6f558ae6b)
            \
             N -- N -- N   refs/heads/5.1.x (b6e3a09f9)

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:
 .../hc/client5/testing/async/AbstractHttpAsyncFundamentalsTest.java   | 2 +-
 .../org/apache/hc/client5/testing/async/AbstractServerTestBase.java   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[httpcomponents-client] 01/01: Be more lenient on slower build machines

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

olegk pushed a commit to branch 5.1.x
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git

commit b6e3a09f95197b56834dcdb8db3724b0667a89d4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Sep 28 10:36:05 2022 -0400

    Be more lenient on slower build machines
---
 .../org/apache/hc/client5/testing/async/AbstractServerTestBase.java   | 4 ++--
 .../org/apache/hc/client5/testing/async/TestHttpMinimalReactive.java  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/AbstractServerTestBase.java b/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/AbstractServerTestBase.java
index f281db2fe..9c7069360 100644
--- a/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/AbstractServerTestBase.java
+++ b/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/AbstractServerTestBase.java
@@ -43,8 +43,8 @@ import org.junit.rules.ExternalResource;
 
 public abstract class AbstractServerTestBase {
 
-    public static final Timeout TIMEOUT = Timeout.ofSeconds(30);
-    public static final Timeout LONG_TIMEOUT = Timeout.ofSeconds(60);
+    public static final Timeout TIMEOUT = Timeout.ofMinutes(1);
+    public static final Timeout LONG_TIMEOUT = Timeout.ofMinutes(3);
 
     protected final URIScheme scheme;
 
diff --git a/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/TestHttpMinimalReactive.java b/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/TestHttpMinimalReactive.java
index 751349682..56c7aeefb 100644
--- a/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/TestHttpMinimalReactive.java
+++ b/httpclient5-testing/src/test/java/org/apache/hc/client5/testing/async/TestHttpMinimalReactive.java
@@ -89,7 +89,7 @@ public class TestHttpMinimalReactive extends AbstractHttpReactiveFundamentalsTes
                 .setTlsStrategy(new DefaultClientTlsStrategy(SSLTestContexts.createClientSSLContext()))
                 .build();
         final IOReactorConfig ioReactorConfig = IOReactorConfig.custom()
-                .setSoTimeout(TIMEOUT)
+                .setSoTimeout(LONG_TIMEOUT)
                 .build();
         if (version.greaterEquals(HttpVersion.HTTP_2)) {
             return HttpAsyncClients.createMinimal(