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 2017/11/03 09:38:30 UTC

[camel] branch master updated: CAMEL-11988: camel-jetty - Problem with latest Spring Boot 1.5.8

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1ab1b86  CAMEL-11988: camel-jetty - Problem with latest Spring Boot 1.5.8
1ab1b86 is described below

commit 1ab1b8633a449e4a0e3e3e211ea34e5c09791297
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Nov 3 10:37:54 2017 +0100

    CAMEL-11988: camel-jetty - Problem with latest Spring Boot 1.5.8
---
 .../java/org/apache/camel/component/jetty9/JettyHttpComponent9.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/components/camel-jetty9/src/main/java/org/apache/camel/component/jetty9/JettyHttpComponent9.java b/components/camel-jetty9/src/main/java/org/apache/camel/component/jetty9/JettyHttpComponent9.java
index ae9cd72..8b69833 100644
--- a/components/camel-jetty9/src/main/java/org/apache/camel/component/jetty9/JettyHttpComponent9.java
+++ b/components/camel-jetty9/src/main/java/org/apache/camel/component/jetty9/JettyHttpComponent9.java
@@ -90,7 +90,9 @@ public class JettyHttpComponent9 extends JettyHttpComponent {
                 result.setDefaultProtocol(scf.getProtocol());
             }
             connectionFactories.add(httpFactory);
-            result.setConnectionFactories(connectionFactories);
+            for (ConnectionFactory cf : connectionFactories) {
+                result.addConnectionFactory(cf);
+            }
             result.setPort(port);
             if (host != null) {
                 result.setHost(host);

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