Skip to content

Commit

Permalink
0001946: ConcurrentModificationException due to timing issue in Outgo…
Browse files Browse the repository at this point in the history
…ingBatchService
  • Loading branch information
chenson42 committed Sep 2, 2014
1 parent f2b2b79 commit 14a1ff5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -358,7 +358,7 @@ public OutgoingBatches getOutgoingBatches(String nodeId, boolean includeDisabled

OutgoingBatches batches = new OutgoingBatches(list);

List<NodeChannel> channels = configurationService.getNodeChannels(nodeId, true);
List<NodeChannel> channels = new ArrayList<NodeChannel>(configurationService.getNodeChannels(nodeId, true));
batches.sortChannels(channels);

List<OutgoingBatch> keepers = new ArrayList<OutgoingBatch>();
Expand Down

0 comments on commit 14a1ff5

Please sign in to comment.