Skip to content

Commit

Permalink
0003227: When pushing to a large number of nodes on limited number of
Browse files Browse the repository at this point in the history
thread, only allocate nodes that have pending changes
  • Loading branch information
jumpmind-josh committed Aug 21, 2017
1 parent b007ed1 commit 2d49261
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -195,7 +195,7 @@ public List<NodeCommunication> list(CommunicationType communicationType) {
break;
}

Map<String, NodeCommunication> communicationRowsMap = new HashMap<>(communicationRows.size());
Map<String, NodeCommunication> communicationRowsMap = new HashMap<String, NodeCommunication>(communicationRows.size());
for (NodeCommunication nodeCommunication : communicationRows) {
communicationRowsMap.put(nodeCommunication.getIdentifier(), nodeCommunication);
}
Expand Down

0 comments on commit 2d49261

Please sign in to comment.