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 2019/12/03 15:01:08 UTC

[camel] 02/11: Fixed flaky test on slow CI servers

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

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

commit f81e7d2705a080bab4490ba60186c1bb58a6a79b
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Nov 25 09:39:03 2019 +0100

    Fixed flaky test on slow CI servers
---
 .../camel/spring/config/ConsumerTemplateMaximumCacheSizeTest.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/components/camel-spring/src/test/java/org/apache/camel/spring/config/ConsumerTemplateMaximumCacheSizeTest.java b/components/camel-spring/src/test/java/org/apache/camel/spring/config/ConsumerTemplateMaximumCacheSizeTest.java
index a16d812..55d7fbc 100644
--- a/components/camel-spring/src/test/java/org/apache/camel/spring/config/ConsumerTemplateMaximumCacheSizeTest.java
+++ b/components/camel-spring/src/test/java/org/apache/camel/spring/config/ConsumerTemplateMaximumCacheSizeTest.java
@@ -43,8 +43,8 @@ public class ConsumerTemplateMaximumCacheSizeTest extends SpringRunWithTestSuppo
         assertEquals(50, template.getMaximumCacheSize());
         assertEquals("Size should be 0", 0, template.getCurrentCacheSize());
 
-        // test that we cache at most 50 producers to avoid it eating too much memory
-        for (int i = 0; i < 53; i++) {
+        // test that we cache around 50 producers to avoid it eating too much memory
+        for (int i = 0; i <= 55; i++) {
             Endpoint e = context.getEndpoint("direct:queue:" + i);
             template.receiveNoWait(e);
         }
@@ -54,7 +54,7 @@ public class ConsumerTemplateMaximumCacheSizeTest extends SpringRunWithTestSuppo
 
         // eviction may still run a bit
         int currentCacheSize = template.getCurrentCacheSize();
-        assertTrue("Size should be around 50, but was " + currentCacheSize, currentCacheSize <= 51);
+        assertTrue("Size should be around 50, but was " + currentCacheSize, currentCacheSize <= 53);
         template.stop();
 
         // should be 0