HDFS-8111. NPE thrown when invalid FSImage filename given for 'hdfs oiv_legacy' cmd ( Contributed by surendra singh lilhore )
(cherry picked from commit 14384f5b51
)
This commit is contained in:
parent
293c763e82
commit
1071a57b20
|
@ -164,6 +164,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-7939. Two fsimage_rollback_* files are created which are not deleted
|
||||
after rollback. (J.Andreina via vinayakumarb)
|
||||
|
||||
HDFS-8111. NPE thrown when invalid FSImage filename given for
|
||||
'hdfs oiv_legacy' cmd ( surendra singh lilhore via vinayakumarb )
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -137,7 +137,11 @@ public class OfflineImageViewer {
|
|||
done = true;
|
||||
} finally {
|
||||
if (!done) {
|
||||
LOG.error("image loading failed at offset " + tracker.getPos());
|
||||
if (tracker != null) {
|
||||
LOG.error("image loading failed at offset " + tracker.getPos());
|
||||
} else {
|
||||
LOG.error("Failed to load image file.");
|
||||
}
|
||||
}
|
||||
IOUtils.cleanup(LOG, in, tracker);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue