HDFS-15796. ConcurrentModificationException error happens on NameNode occasionally. Contributed by Daniel Ma

(cherry picked from commit b6c06c4b76)
This commit is contained in:
S O'Donnell 2021-07-09 10:03:57 +01:00
parent ab939814a3
commit 705884b87a
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ class PendingReconstructionBlocks {
synchronized (pendingReconstructions) {
PendingBlockInfo found = pendingReconstructions.get(block);
if (found != null) {
return found.targets;
return new ArrayList<>(found.targets);
}
}
return null;