Hi all,

I'm testing with CamelTestSupport and have a long running test:

        int runs = 1500;

        MockEndpoint out = getMockEndpoint("mock:out2");

        ...

        out.expectedMessageCount(runs);
        out.setResultWaitTime(60000);
        System.out.println("---> " + out.getResultWaitTime());

        out.assertIsSatisfied();

To avoid that I'm running in a time out, I've set the result wait time to one minute. But the timeout comes after 10 seconds (see log below). What I'm doing wrong?

Best regards - Claus


INFO: Total 2 routes, of which 2 is started.
23.11.2010 13:48:42 org.apache.camel.impl.DefaultCamelContext start
INFO: Apache Camel 2.5.0 (CamelContext: camel-1) started in 0.410 seconds
---> 60000
23.11.2010 13:48:42 org.apache.camel.component.mock.MockEndpoint assertIsSatisfied
INFO: Asserting: Endpoint[mock://out2] is satisfied
23.11.2010 13:48:53 org.apache.camel.test.CamelTestSupport tearDown
INFO: Testing done: testHighLoad(org.apache.camel.processor.idempotent.test.TestIdempotentRepositoryInRoute)
23.11.2010 13:48:53 org.apache.camel.impl.DefaultCamelContext doStop
INFO: Apache Camel 2.5.0 (CamelContext:camel-1) is shutting down
23.11.2010 13:48:53 org.apache.camel.impl.DefaultShutdownStrategy doShutdown
INFO: Starting to graceful shutdown 2 routes (timeout 10 seconds)
23.11.2010 13:48:53 org.apache.camel.impl.DefaultShutdownStrategy$ShutdownTask run
INFO: Route: mongodb_idempotent_repository_md5 suspension deferred.
23.11.2010 13:48:53 org.apache.camel.impl.DefaultShutdownStrategy$ShutdownTask run
INFO: Route: mongodb_idempotent_repository suspension deferred.
23.11.2010 13:48:53 org.apache.camel.impl.DefaultShutdownStrategy$ShutdownTask run INFO: Waiting as there are still 5926 inflight and pending exchanges to complete, timeout in 10 seconds.

Reply via email to