You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/08/01 10:48:06 UTC

[camel] branch master updated: CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Removed reference to http4 in camel-jetty

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

acosentino 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 76ff2d1  CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Removed reference to http4 in camel-jetty
76ff2d1 is described below

commit 76ff2d18573e5425ca83bd895f959a870441220b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 1 12:45:39 2019 +0200

    CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Removed reference to http4 in camel-jetty
---
 .../java/org/apache/camel/component/jetty/HttpGZipEncodingTest.java     | 2 +-
 .../camel/component/jetty/rest/producer/Http4RestProducerGetTest.java   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpGZipEncodingTest.java b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpGZipEncodingTest.java
index 18b9f72..850c553 100644
--- a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpGZipEncodingTest.java
+++ b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpGZipEncodingTest.java
@@ -30,7 +30,7 @@ import org.apache.http.impl.client.HttpClientBuilder;
 import org.junit.Ignore;
 import org.junit.Test;
 
-@Ignore("TODO: investigate for Camel 3.0.  The test actally works fine, but the " + "test needs to be verified as http4 supports gzip by default, so some tests may "
+@Ignore("TODO: investigate for Camel 3.0.  The test actally works fine, but the " + "test needs to be verified as http supports gzip by default, so some tests may "
         + "have to be changed to stay meaningful.")
 public class HttpGZipEncodingTest extends BaseJettyTest {
 
diff --git a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/rest/producer/Http4RestProducerGetTest.java b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/rest/producer/Http4RestProducerGetTest.java
index 300c4f7..0479c7c 100644
--- a/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/rest/producer/Http4RestProducerGetTest.java
+++ b/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/rest/producer/Http4RestProducerGetTest.java
@@ -36,7 +36,7 @@ public class Http4RestProducerGetTest extends BaseJettyTest {
             @Override
             public void configure() throws Exception {
                 restConfiguration().component("jetty").host("localhost").port(getPort())
-                        // use camel-http4 as rest client
+                        // use camel-http as rest client
                         .producerComponent("http");
 
                 from("direct:start")