onException and onCompletion clauses used together

2022-08-08 Thread Eduard Gomoliako
Hello, dear users of Camel, I encountered an issue when I tried to configure an error ignoring route with onCompletion. I have a route with onCompletion part that I expect to get executed in all the possible cases (except route stopped). This onCompletion part works well with and without exce

RE: Timer ensure that the route only runs once at a time

2022-08-08 Thread Mattern, Alex
This helped me understand that Camel Timer is defaulting to fixed-delay. From the Camel code: https://github.com/Talend/apache-camel/blob/master/camel-core/src/main/java/org/apache/camel/component/timer/TimerConsumer.java if (endpoint.isFixedRate()) { timer.scheduleAtFixedRate(task, endpoint.get

Re: Timer ensure that the route only runs once at a time

2022-08-08 Thread Simon Martinelli
Thank you Alex Holen Sie sich Outlook für Android From: Mattern, Alex Sent: Monday, August 8, 2022 6:21:37 PM To: users@camel.apache.org Subject: RE: Timer ensure that the route only runs once at a time This helped me understand that Came