YARN-2280. Resource manager web service fields are not accessible (Krisztian Horvath via aw)

This commit is contained in:
Allen Wittenauer 2015-03-10 16:32:20 -07:00
parent 64eb068ee8
commit a5cf985bf5
3 changed files with 9 additions and 0 deletions

View File

@ -26,6 +26,9 @@ Trunk - Unreleased
YARN-3199. Fair Scheduler documentation improvements (Rohit Agarwal via
aw)
YARN-2280. Resource manager web service fields are not accessible
(Krisztian Horvath via aw)
OPTIMIZATIONS
BUG FIXES

View File

@ -36,4 +36,7 @@ public class NodesInfo {
node.add(nodeinfo);
}
public ArrayList<NodeInfo> getNodes() {
return node;
}
}

View File

@ -34,4 +34,7 @@ public class SchedulerTypeInfo {
this.schedulerInfo = scheduler;
}
public SchedulerInfo getSchedulerInfo() {
return schedulerInfo;
}
}