Skip to content
Snippets Groups Projects
Commit 66c27e7e authored by Geddings Barrineau's avatar Geddings Barrineau Committed by GitHub
Browse files

Merge pull request #728 from shravansegu/patch-ConcurrentModificationException

Fixed ConcurrentModificationException error in StaticEntryPusher.java
parents 5aaf95d9 aed77004
No related branches found
No related tags found
No related merge requests found
......@@ -312,7 +312,7 @@ implements IOFSwitchListener, IFloodlightModule, IStaticEntryPusherService, ISto
} /* else use default of flow */
if (!entries.containsKey(switchName)) {
entries.put(switchName, new HashMap<String, OFMessage>());
entries.put(switchName, new ConcurrentHashMap<String, OFMessage>());
}
/* get the correct builder for the OF version supported by the switch */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment