You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/08/10 14:50:09 UTC

[camel] branch main updated: CAMEL-19684: Give test longer time to run on slower CI boxes.

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new a7f62d0b8af CAMEL-19684: Give test longer time to run on slower CI boxes.
a7f62d0b8af is described below

commit a7f62d0b8afadeea3601e341725838366848a3cf
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Aug 10 16:49:55 2023 +0200

    CAMEL-19684: Give test longer time to run on slower CI boxes.
---
 .../camel/component/undertow/DefaultUndertowHttpBindingTest.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/DefaultUndertowHttpBindingTest.java b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/DefaultUndertowHttpBindingTest.java
index 31961701e68..3e19e1a1308 100644
--- a/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/DefaultUndertowHttpBindingTest.java
+++ b/components/camel-undertow/src/test/java/org/apache/camel/component/undertow/DefaultUndertowHttpBindingTest.java
@@ -35,8 +35,8 @@ import static org.junit.jupiter.api.Assertions.fail;
 
 public class DefaultUndertowHttpBindingTest {
 
+    @Timeout(10)
     @Test
-    @Timeout(1)
     public void readEntireDelayedPayload() throws Exception {
         String[] delayedPayloads = new String[] {
                 "",
@@ -51,7 +51,7 @@ public class DefaultUndertowHttpBindingTest {
         checkResult(result, delayedPayloads);
     }
 
-    @Timeout(1)
+    @Timeout(10)
     @Test
     public void readEntireMultiDelayedPayload() throws Exception {
         String[] delayedPayloads = new String[] {
@@ -72,7 +72,7 @@ public class DefaultUndertowHttpBindingTest {
         assertEquals(Stream.of(delayedPayloads).collect(Collectors.joining()), result);
     }
 
-    @Timeout(1)
+    @Timeout(10)
     @Test
     public void readEntireMultiDelayedWithPausePayload() throws Exception {
         String[] delayedPayloads = new String[] {