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

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

commit b4898e5bdc54dc919806dfbfbd000825ad3e4dd0
Author: Pascal Schumacher <pascalschumac...@gmx.net>
AuthorDate: Wed Nov 15 20:51:16 2017 +0100

    camel-websocket: 
WebsocketEndpointConfigurationTest#testSetServletThreadPool: try to make test 
pass on build.apache.org by increasing maximum threads from 20 to 25
---
 .../camel/component/websocket/WebsocketEndpointConfigurationTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-websocket/src/test/java/org/apache/camel/component/websocket/WebsocketEndpointConfigurationTest.java
 
b/components/camel-websocket/src/test/java/org/apache/camel/component/websocket/WebsocketEndpointConfigurationTest.java
index 503f7b6..7e4beaf 100644
--- 
a/components/camel-websocket/src/test/java/org/apache/camel/component/websocket/WebsocketEndpointConfigurationTest.java
+++ 
b/components/camel-websocket/src/test/java/org/apache/camel/component/websocket/WebsocketEndpointConfigurationTest.java
@@ -108,7 +108,7 @@ public class WebsocketEndpointConfigurationTest extends 
CamelTestSupport {
         String uri = "websocket://localhost:" + port + 
"/bar?bufferSize=25000&maxIdleTime=3000";
         WebsocketEndpoint websocketEndpoint = 
(WebsocketEndpoint)context.getEndpoint(uri);
         WebsocketComponent component = websocketEndpoint.getComponent();
-        QueuedThreadPool qtp = new QueuedThreadPool(20, 1);
+        QueuedThreadPool qtp = new QueuedThreadPool(25, 1);
         component.setThreadPool(qtp);
         Consumer consumer = websocketEndpoint.createConsumer(processor);
         component.connect((WebsocketProducerConsumer) consumer);

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <commits@camel.apache.org>.

Reply via email to