HDFS-6291. FSImage may be left unclosed in BootstrapStandby#doRun() ( Contributed by Sanghyun Yun)
(cherry picked from commit e5e492a963
)
This commit is contained in:
parent
7fe1d74005
commit
089d420a82
|
@ -334,6 +334,9 @@ Release 2.8.0 - UNRELEASED
|
|||
|
||||
HDFS-8174. Update replication count to live rep count in fsck report. (J.Andreina)
|
||||
|
||||
HDFS-6291. FSImage may be left unclosed in BootstrapStandby#doRun()
|
||||
(Sanghyun Yun via vinayakumarb)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -320,8 +320,9 @@ public class BootstrapStandby implements Tool, Configurable {
|
|||
image.saveDigestAndRenameCheckpointImage(NameNodeFile.IMAGE, imageTxId,
|
||||
hash);
|
||||
} catch (IOException ioe) {
|
||||
image.close();
|
||||
throw ioe;
|
||||
} finally {
|
||||
image.close();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue