[jboss-jira] [JBoss JIRA] (WFLY-1693) ConcurrentModificationException when iterating over Host.getDeployments()
Ken Finnigan (JIRA)
jira-events at lists.jboss.org
Mon Jul 15 06:42:26 EDT 2013
Ken Finnigan created WFLY-1693:
----------------------------------
Summary: ConcurrentModificationException when iterating over Host.getDeployments()
Key: WFLY-1693
URL: https://issues.jboss.org/browse/WFLY-1693
Project: WildFly
Issue Type: Bug
Components: Web (Undertow)
Affects Versions: 8.0.0.Alpha2
Reporter: Ken Finnigan
Assignee: Stuart Douglas
Though I understand the reasoning behind using Collections.unmodifiableSet() for the deployments returned from Host.getDeployments(), as its backed by the underlying Set this can still be a problem.
In making GateIn work on Wildfly, I found that on occasion when iterating over Host.getDeployments() during container startup, I would encounter a ConcurrentModificationException if a new Deployment was added at the same point I was looping through the existing deployments by calling Iterator.next()
It would be great if the Collection returned from Host.getDeployments() could be a copy of the underlying collection to prevent possible ConcurrentModificationExceptions.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list