[
https://issues.apache.org/jira/browse/CAMEL-8673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Willem Jiang resolved CAMEL-8673.
---------------------------------
Resolution: Fixed
Fix Version/s: 2.16.0
2.15.2
2.14.3
Applied the patch into camel master ,camel-2.15.x and camel-2.14.x branch with
thanks to Dirk.
> 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
> Assignee: Willem Jiang
> Priority: Minor
> Fix For: 2.14.3, 2.15.2, 2.16.0
>
>
> 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:
> {code}
> void removeRouteCollection(Collection<Route> routes) {
> synchronized (routes) {
> this.routes.removeAll(routes);
> }
> }
> {code}
> Here the code synchronizes on the routes parameter, but should be on
> this.routes (as it getRoutes() does). The same in addRouteCollection().
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)