YARN-1568. Rename clusterid to clusterId in ActiveRMInfoProto (kasha)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1556436 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karthik Kambatla 2014-01-08 03:31:36 +00:00
parent 531605ef28
commit 72d69856d5
3 changed files with 6 additions and 4 deletions

View File

@ -185,6 +185,8 @@ Release 2.4.0 - UNRELEASED
YARN-1482. Modified WebApplicationProxy to make it work across ResourceManager
fail-over. (Xuan Gong via vinodkv)
YARN-1568. Rename clusterid to clusterId in ActiveRMInfoProto (kasha)
OPTIMIZATIONS
BUG FIXES

View File

@ -138,6 +138,6 @@ message RMStateVersionProto {
///////////// RM Failover related records ////////////////////////
//////////////////////////////////////////////////////////////////
message ActiveRMInfoProto {
required string clusterid = 1;
required string clusterId = 1;
required string rmId = 2;
}

View File

@ -172,7 +172,7 @@ private static byte[] createActiveNodeInfo(String clusterId, String rmId)
throws IOException {
return YarnServerResourceManagerServiceProtos.ActiveRMInfoProto
.newBuilder()
.setClusterid(clusterId)
.setClusterId(clusterId)
.setRmId(rmId)
.build()
.toByteArray();
@ -198,10 +198,10 @@ private synchronized boolean isParentZnodeSafe(String clusterId)
}
// Check if the passed proto corresponds to an RM in the same cluster
if (!proto.getClusterid().equals(clusterId)) {
if (!proto.getClusterId().equals(clusterId)) {
LOG.error("Mismatched cluster! The other RM seems " +
"to be from a different cluster. Current cluster = " + clusterId +
"Other RM's cluster = " + proto.getClusterid());
"Other RM's cluster = " + proto.getClusterId());
return false;
}
return true;