DefaultCamelContext throws NPE in getRoute(String id)
------------------------------------------------------
Key: CAMEL-3198
URL: https://issues.apache.org/activemq/browse/CAMEL-3198
Project: Apache Camel
Issue Type: Bug
Components: camel-core
Affects Versions: 2.4.0
Reporter: Stefan Below
Priority: Minor
DefaultCamelContext throws NPE in getRoute(String id) if no routes are
deployed.
This happens because the "route LinkedHashSet" is not initialized.
Fix:
don't do Lazy init of route or add this to getRoute(String id):
if (routes == null) {
routes = new LinkedHashSet<Route>();
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.