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 083ebc0 Fixed CS 083ebc0 is described below commit 083ebc003ac7f5844b217f4ee7cb4989e86fff61 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Sep 21 07:50:12 2020 +0200 Fixed CS --- .../camel/processor/MulticastParallelTimeoutStreamCachingTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java index 0271f63..c8963c7 100644 --- a/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/processor/MulticastParallelTimeoutStreamCachingTest.java @@ -109,7 +109,7 @@ public class MulticastParallelTimeoutStreamCachingTest extends ContextTestSuppor CachedOutputStream outputStream = new CachedOutputStream(exchange); try { // sleep for one second so that the write to the CachedOutputStream happens after the main exchange has finished due to timeout on the multicast - Thread.sleep(1000l); + Thread.sleep(1000L); } catch (InterruptedException e) { throw new IllegalStateException("Unexpected exception", e); } @@ -136,7 +136,7 @@ public class MulticastParallelTimeoutStreamCachingTest extends ContextTestSuppor from("direct:x").process(processor1).to("mock:x"); - from("direct:b").multicast().timeout(500l).parallelProcessing().to("direct:y"); + from("direct:b").multicast().timeout(500L).parallelProcessing().to("direct:y"); from("direct:y").process(processor2).to("mock:y"); }