HDFS-7552. Change FsVolumeList toString() to fix TestDataNodeVolumeFailureToleration (Liang Xie via Colin P. McCabe)
This commit is contained in:
parent
6635ccd217
commit
a4876c130f
|
@ -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
|
||||||
|
|
|
@ -213,7 +213,7 @@ class FsVolumeList {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return volumes.toString();
|
return Arrays.toString(volumes.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue