ARTEMIS-962 Fix CME when parsing system properties

Add synchronized block against the properties before iterating on them.

JIRA: https://issues.apache.org/jira/browse/ARTEMIS-926
(cherry picked from commit 5ae47e8c3c4cd17ca6abc75e72be0338b0ceaf96)

This closes #969
This commit is contained in:
Jeff Mesnil 2017-01-18 15:56:35 +01:00 committed by Clebert Suconic
parent 52d03c885c
commit 59f20d752a

View File

@ -302,7 +302,7 @@ public class ConfigurationImpl implements Configuration, Serializable {
@Override
public Configuration parseSystemProperties(Properties properties) throws Exception {
synchronized (properties) {
Map<String, Object> beanProperties = new HashMap<>();
for (Map.Entry<Object, Object> entry : properties.entrySet()) {
@ -319,6 +319,7 @@ public class ConfigurationImpl implements Configuration, Serializable {
return this;
}
}
@Override
public boolean isClustered() {