�
���
�
On 19.08.2020 16:01, Alex Soto wrote:
Thanks Alex,
Also looking for a way to configure this in a Blueprint XML file.
Best regards,
Alex soto
On Aug 18, 2020, at 11:13 AM, Alex Dettinger wrote:
Hi Alex,
It seems the timeout is tuned after the context creation. On
Thanks Alex,
Also looking for a way to configure this in a Blueprint XML file.
Best regards,
Alex soto
> On Aug 18, 2020, at 11:13 AM, Alex Dettinger wrote:
>
> Hi Alex,
>
> It seems the timeout is tuned after the context creation. One may achieve
> the desired result with either:
> @Ove
Hi Alex,
It seems the timeout is tuned after the context creation. One may achieve
the desired result with either:
@Override
protected void doPostSetup() throws Exception {
context.getShutdownStrategy().setTimeout(60);
}
OR MAYBE
@Override
protected int getShutdowntimeout() {
return 60;
}
h
Hello,
Using Camel 3.4.0, in my unit test, I am trying to configure the shutdown
timeout doing the following:
public class MyTest extends CamelTestSupport {
. . .
@Override
protected CamelContext createCamelContext() throws Exception {