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 e873b22 Fixed CS e873b22 is described below commit e873b2287c98f1261139454991ef8100f613f26a Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue May 14 06:44:30 2019 +0200 Fixed CS --- .../aws/sqs/integration/SqsConsumerMessageIntegrationTest.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/camel-aws-sqs/src/test/java/org/apache/camel/component/aws/sqs/integration/SqsConsumerMessageIntegrationTest.java b/components/camel-aws-sqs/src/test/java/org/apache/camel/component/aws/sqs/integration/SqsConsumerMessageIntegrationTest.java index 9f6c53b..68bfc53 100644 --- a/components/camel-aws-sqs/src/test/java/org/apache/camel/component/aws/sqs/integration/SqsConsumerMessageIntegrationTest.java +++ b/components/camel-aws-sqs/src/test/java/org/apache/camel/component/aws/sqs/integration/SqsConsumerMessageIntegrationTest.java @@ -63,9 +63,11 @@ public class SqsConsumerMessageIntegrationTest extends CamelTestSupport { public void configure() throws Exception { from("direct:start").startupOrder(2).to(sqsEndpointUri); - from("aws-sqs://camel-1?accessKey=RAW(xxxx)&secretKey=RAW(xxxx)®ion=EU_WEST_1&deleteAfterRead=false&deleteIfFiltered=true").startupOrder(1).filter(simple("${body} != 'ignore'")).log("${body}") - .log("${header.CamelAwsSqsReceiptHandle}") - .to("mock:result"); + from("aws-sqs://camel-1?accessKey=RAW(xxxx)&secretKey=RAW(xxxx)®ion=EU_WEST_1&deleteAfterRead=false&deleteIfFiltered=true").startupOrder(1) + .filter(simple("${body} != 'ignore'")) + .log("${body}") + .log("${header.CamelAwsSqsReceiptHandle}") + .to("mock:result"); } }; }