YARN-1579. ActiveRMInfoProto fields should be optional (kasha)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1557002 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a2af7a32f1
commit
9619fc7740
|
@ -187,6 +187,8 @@ Release 2.4.0 - UNRELEASED
|
||||||
|
|
||||||
YARN-1568. Rename clusterid to clusterId in ActiveRMInfoProto (kasha)
|
YARN-1568. Rename clusterid to clusterId in ActiveRMInfoProto (kasha)
|
||||||
|
|
||||||
|
YARN-1579. ActiveRMInfoProto fields should be optional (kasha)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -138,6 +138,6 @@ message RMStateVersionProto {
|
||||||
///////////// RM Failover related records ////////////////////////
|
///////////// RM Failover related records ////////////////////////
|
||||||
//////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////
|
||||||
message ActiveRMInfoProto {
|
message ActiveRMInfoProto {
|
||||||
required string clusterId = 1;
|
optional string clusterId = 1;
|
||||||
required string rmId = 2;
|
optional string rmId = 2;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue