Camel v3.7.0 running under Spring-Boot v2.4.1
To reproduce:
Create route.
Issue a HealthCheckSupport#checkAll <- works fine
Adapt context to SpringCamelContext and use that to suspend the route.
SpringCamelContext ecc = context.adapt(SpringCamelContext.class);
ecc.suspendRoute(route);
Issue a
OK good! Based on what i saw, that was the only thing left i could think of.
On Thu, Jan 7, 2021 at 2:33 PM Cox, Jeremy wrote:
> The package structure was the problem.
>
> I created a package "routes" underneath where the application is, and put
> my route there.
> Thank you very much!
>
> Since