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

This commit is contained in:
Colin Patrick Mccabe 2014-12-19 11:13:04 -08:00
parent 6635ccd217
commit a4876c130f
2 changed files with 4 additions and 1 deletions

View File

@ -621,6 +621,9 @@ Release 2.7.0 - UNRELEASED
HDFS-7431. log message for InvalidMagicNumberException may be incorrect. HDFS-7431. log message for InvalidMagicNumberException may be incorrect.
(Yi Liu via cnauroth) (Yi Liu via cnauroth)
HDFS-7552. Change FsVolumeList toString() to fix
TestDataNodeVolumeFailureToleration (Liang Xie via Colin P. McCabe)
Release 2.6.1 - UNRELEASED Release 2.6.1 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

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