Dirk Reske created CAMEL-8673:
---------------------------------
Summary: ConcurrentModificationException when creating dynamic
routes
Key: CAMEL-8673
URL: https://issues.apache.org/jira/browse/CAMEL-8673
Project: Camel
Issue Type: Bug
Components: camel-core
Affects Versions: 2.14.1
Reporter: Dirk Reske
Priority: Minor
This Ticket refers to CAMEL-7836.
The fix seems to be slightly wrong. (We still geht the
ConcurrentModificationException)
The cause seems to be in removeRouteCollection and addRouteCollection. See here:
void removeRouteCollection(Collection<Route> routes) {
synchronized (routes) {
this.routes.removeAll(routes);
}
}
Here the code synchronizes on the routes parameter, but getRoutes synchronizes
on this.routes. (the same in addRouteCollection)
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)