Hello, I have a few Rest Services defined with Camel Blueprint DSL (Camel 3.4.0 running on Karaf 4.2.9). In my integration test, I want to discover the services for testing. After the Camel Context reaches status ServiceStatus.Started, the Rest Registry reports no services, although everything is fine with the services.
List<RestService> services = camelContext.getRestRegistry().listAllRestServices(); assertTrue(services.size() > 1); The above assertion is failing even though several services are running and I can use them without any problem. Any idea why is this happening? Thanks and best regards, Alex soto