MAPREDUCE-3976. TestRMContainerAllocator failing (Jason Lowe via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1297557 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0ee71adeb4
commit
a98b756c73
@ -278,6 +278,8 @@ Release 0.23.2 - UNRELEASED
|
||||
MAPREDUCE-3034. Ensure NodeManager reboots itself on direction from
|
||||
ResourceManager. (Devaraj K & Eric Payne via acmurthy)
|
||||
|
||||
MAPREDUCE-3976. TestRMContainerAllocator failing (Jason Lowe via bobby)
|
||||
|
||||
Release 0.23.1 - 2012-02-17
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -55,7 +55,7 @@ public static MRAppMetrics create() {
|
||||
}
|
||||
|
||||
public static MRAppMetrics create(MetricsSystem ms) {
|
||||
JvmMetrics.create("MRAppMaster", null, ms);
|
||||
JvmMetrics.initSingleton("MRAppMaster", null);
|
||||
return ms.register(new MRAppMetrics());
|
||||
}
|
||||
|
||||
|
@ -451,8 +451,8 @@ public void start() {
|
||||
}
|
||||
|
||||
startWepApp();
|
||||
MetricsSystem ms = DefaultMetricsSystem.initialize("ResourceManager");
|
||||
JvmMetrics.create("ResourceManager", null, ms);
|
||||
DefaultMetricsSystem.initialize("ResourceManager");
|
||||
JvmMetrics.initSingleton("ResourceManager", null);
|
||||
try {
|
||||
rmDTSecretManager.startThreads();
|
||||
} catch(IOException ie) {
|
||||
|
Loading…
Reference in New Issue
Block a user