HDFS-7552. Change FsVolumeList toString() to fix TestDataNodeVolumeFailureToleration (Liang Xie via Colin P. McCabe)

(cherry picked from commit a4876c130f)

(cherry picked from commit 22f72c7946)
This commit is contained in:
Colin Patrick Mccabe 2014-12-19 11:13:04 -08:00 committed by Vinod Kumar Vavilapalli
parent 0adcfe6c7e
commit adc3405321
2 changed files with 4 additions and 1 deletions

View File

@ -175,6 +175,9 @@ Release 2.6.1 - UNRELEASED
HDFS-8863. The remaining space check in BlockPlacementPolicyDefault is HDFS-8863. The remaining space check in BlockPlacementPolicyDefault is
flawed. (Kihwal Lee via yliu) 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 Release 2.6.0 - 2014-11-18
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -216,7 +216,7 @@ class FsVolumeList {
@Override @Override
public String toString() { public String toString() {
return volumes.toString(); return Arrays.toString(volumes.get());
} }
/** /**