HDFS-8521. Add VisibleForTesting annotation to BlockPoolSlice#selectReplicaToDelete. (cmccabe)
This commit is contained in:
parent
c1d50a91f7
commit
806e407ac8
|
@ -862,6 +862,9 @@ Release 2.7.1 - UNRELEASED
|
|||
HDFS-8213. DFSClient should use hdfs.client.htrace HTrace configuration
|
||||
prefix rather than hadoop.htrace (cmccabe)
|
||||
|
||||
HDFS-8521. Add VisibleForTesting annotation to
|
||||
BlockPoolSlice#selectReplicaToDelete. (cmccabe)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -57,7 +57,9 @@ import org.apache.hadoop.util.DiskChecker.DiskErrorException;
|
|||
import org.apache.hadoop.util.ShutdownHookManager;
|
||||
import org.apache.hadoop.util.Time;
|
||||
|
||||
import com.google.common.annotations.VisibleForTesting;
|
||||
import com.google.common.io.Files;
|
||||
|
||||
/**
|
||||
* A block pool slice represents a portion of a block pool stored on a volume.
|
||||
* Taken together, all BlockPoolSlices sharing a block pool ID across a
|
||||
|
@ -562,6 +564,7 @@ class BlockPoolSlice {
|
|||
return replicaToKeep;
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
static ReplicaInfo selectReplicaToDelete(final ReplicaInfo replica1,
|
||||
final ReplicaInfo replica2) {
|
||||
ReplicaInfo replicaToKeep;
|
||||
|
|
Loading…
Reference in New Issue