HDFS-15796. ConcurrentModificationException error happens on NameNode occasionally. Contributed by Daniel Ma
This commit is contained in:
parent
6450c1ea9a
commit
b6c06c4b76
@ -333,7 +333,7 @@ List<DatanodeStorageInfo> getTargets(BlockInfo block) {
|
|||||||
synchronized (pendingReconstructions) {
|
synchronized (pendingReconstructions) {
|
||||||
PendingBlockInfo found = pendingReconstructions.get(block);
|
PendingBlockInfo found = pendingReconstructions.get(block);
|
||||||
if (found != null) {
|
if (found != null) {
|
||||||
return found.targets;
|
return new ArrayList<>(found.targets);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user