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 7210bd4 CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern 7210bd4 is described below commit 7210bd4c3c1b2b8a7dc7743ef59865d54dfe3b50 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Mar 16 06:58:10 2020 +0100 CAMEL-14575: camel-core - TypeConverter from String to Long - drop time pattern --- .../apache/camel/component/atomix/client/map/AtomixMapProducerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-atomix/src/test/java/org/apache/camel/component/atomix/client/map/AtomixMapProducerTest.java b/components/camel-atomix/src/test/java/org/apache/camel/component/atomix/client/map/AtomixMapProducerTest.java index 2c4074b..abbfcb1 100644 --- a/components/camel-atomix/src/test/java/org/apache/camel/component/atomix/client/map/AtomixMapProducerTest.java +++ b/components/camel-atomix/src/test/java/org/apache/camel/component/atomix/client/map/AtomixMapProducerTest.java @@ -104,7 +104,7 @@ public class AtomixMapProducerTest extends AtomixClientTestSupport { result = fluent.clearAll() .withHeader(AtomixClientConstants.RESOURCE_ACTION, AtomixMap.Action.PUT) .withHeader(AtomixClientConstants.RESOURCE_KEY, key1) - .withHeader(AtomixClientConstants.RESOURCE_TTL, "1s") + .withHeader(AtomixClientConstants.RESOURCE_TTL, "1000") .withBody(val) .request(Message.class);