|
@@ -2946,15 +2946,6 @@ public class BlockManager {
|
|
|
return hasNonEcBlockUsingStripedID;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set the value of whether there are any non-EC blocks using StripedID.
|
|
|
- *
|
|
|
- * @param has - the value of whether there are any non-EC blocks using StripedID.
|
|
|
- */
|
|
|
- public void hasNonEcBlockUsingStripedID(boolean has){
|
|
|
- hasNonEcBlockUsingStripedID = has;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Process a single possibly misreplicated block. This adds it to the
|
|
|
* appropriate queues if necessary, and returns a result code indicating
|
|
@@ -3562,7 +3553,7 @@ public class BlockManager {
|
|
|
if (BlockIdManager.isStripedBlockID(block.getBlockId())) {
|
|
|
info = blocksMap.getStoredBlock(
|
|
|
new Block(BlockIdManager.convertToStripedID(block.getBlockId())));
|
|
|
- if ((info == null) && hasNonEcBlockUsingStripedID()){
|
|
|
+ if ((info == null) && hasNonEcBlockUsingStripedID){
|
|
|
info = blocksMap.getStoredBlock(block);
|
|
|
}
|
|
|
} else {
|
|
@@ -3746,10 +3737,9 @@ public class BlockManager {
|
|
|
*/
|
|
|
public BlockInfo addBlockCollectionWithCheck(
|
|
|
BlockInfo block, BlockCollection bc) {
|
|
|
- if (!hasNonEcBlockUsingStripedID()){
|
|
|
- if (BlockIdManager.isStripedBlockID(block.getBlockId())) {
|
|
|
- hasNonEcBlockUsingStripedID(true);
|
|
|
- }
|
|
|
+ if (!hasNonEcBlockUsingStripedID && !block.isStriped() &&
|
|
|
+ BlockIdManager.isStripedBlockID(block.getBlockId())) {
|
|
|
+ hasNonEcBlockUsingStripedID = true;
|
|
|
}
|
|
|
return addBlockCollection(block, bc);
|
|
|
}
|