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 302bba8 Fixed CS
302bba8 is described below
commit 302bba80dd2d82c1b9b485101b08e1a68cbee255
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Feb 17 06:45:39 2021 +0100
Fixed CS
---
.../test/java/org/apache/camel/component/http/HttpProducerLoadTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java
index da0cf75..e9fc12b 100644
---
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java
+++
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerLoadTest.java
@@ -73,7 +73,7 @@ public class HttpProducerLoadTest extends BaseHttpTest {
public void configure() throws Exception {
from("direct:echo")
.to("http://localhost:" + localServer.getLocalPort()
- + "/echo?throwExceptionOnFailure=false");
+ + "/echo?throwExceptionOnFailure=false");
}
};
}