MAPREDUCE-6286. A typo in HistoryViewer makes some code useless, which causes counter limits are not reset correctly. Contributed by Zhihai Xu.
(cherry picked from commit 433542904a
)
This commit is contained in:
parent
418d078bc5
commit
7c72c7f529
|
@ -38,6 +38,10 @@ Release 2.8.0 - UNRELEASED
|
|||
|
||||
BUG FIXES
|
||||
|
||||
MAPREDUCE-6286. A typo in HistoryViewer makes some code useless, which
|
||||
causes counter limits are not reset correctly.
|
||||
(Zhihai Xu via harsh)
|
||||
|
||||
MAPREDUCE-6213. NullPointerException caused by job history server addr not
|
||||
resolvable. (Peng Zhang via harsh)
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ public class HistoryViewer {
|
|||
final Configuration jobConf = new Configuration(conf);
|
||||
try {
|
||||
jobConf.addResource(fs.open(jobConfPath), jobConfPath.toString());
|
||||
Limits.reset(conf);
|
||||
Limits.reset(jobConf);
|
||||
} catch (FileNotFoundException fnf) {
|
||||
if (LOG.isWarnEnabled()) {
|
||||
LOG.warn("Missing job conf in history", fnf);
|
||||
|
|
Loading…
Reference in New Issue