HDFS-7552. Change FsVolumeList toString() to fix TestDataNodeVolumeFailureToleration (Liang Xie via Colin P. McCabe)
(cherry picked from commita4876c130f
) (cherry picked from commit22f72c7946
)
This commit is contained in:
parent
0adcfe6c7e
commit
adc3405321
|
@ -175,6 +175,9 @@ Release 2.6.1 - UNRELEASED
|
|||
HDFS-8863. The remaining space check in BlockPlacementPolicyDefault is
|
||||
flawed. (Kihwal Lee via yliu)
|
||||
|
||||
HDFS-7552. Change FsVolumeList toString() to fix
|
||||
TestDataNodeVolumeFailureToleration (Liang Xie via Colin P. McCabe)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -216,7 +216,7 @@ class FsVolumeList {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return volumes.toString();
|
||||
return Arrays.toString(volumes.get());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue