Repository: camel Updated Branches: refs/heads/master a98fe1643 -> c211ed2fb
CAMEL-8315 Applied the fix to camel-jetty8 component Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c211ed2f Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c211ed2f Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c211ed2f Branch: refs/heads/master Commit: c211ed2fb28fc5f08f1ee47c09ba89957c397913 Parents: a98fe16 Author: Willem Jiang <[email protected]> Authored: Thu Feb 5 15:58:59 2015 +0800 Committer: Willem Jiang <[email protected]> Committed: Thu Feb 5 16:05:09 2015 +0800 ---------------------------------------------------------------------- .../org/apache/camel/component/jetty8/JettyHttpComponent8.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c211ed2f/components/camel-jetty8/src/main/java/org/apache/camel/component/jetty8/JettyHttpComponent8.java ---------------------------------------------------------------------- diff --git a/components/camel-jetty8/src/main/java/org/apache/camel/component/jetty8/JettyHttpComponent8.java b/components/camel-jetty8/src/main/java/org/apache/camel/component/jetty8/JettyHttpComponent8.java index 588cf3c..68719e3 100644 --- a/components/camel-jetty8/src/main/java/org/apache/camel/component/jetty8/JettyHttpComponent8.java +++ b/components/camel-jetty8/src/main/java/org/apache/camel/component/jetty8/JettyHttpComponent8.java @@ -78,7 +78,7 @@ public class JettyHttpComponent8 extends JettyHttpComponent { .invoke(result, responseBufferSize); } if (result != null && responseHeaderSize != null) { - result.getClass().getMethod("setResponseBufferSize", Integer.TYPE) + result.getClass().getMethod("setResponseHeaderSize", Integer.TYPE) .invoke(result, responseHeaderSize); } result.getClass().getMethod("setPort", Integer.TYPE).invoke(result, porto);
