YARN-10296. Make ContainerPBImpl#getId/setId synchronized. Contributed by Benjamin Teke

This commit is contained in:
Szilard Nemeth 2020-06-05 10:11:40 +02:00
parent 5157118bd7
commit a4835db95a
1 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ public ContainerPBImpl(ContainerProto proto) {
viaProto = true;
}
public ContainerProto getProto() {
synchronized public ContainerProto getProto() {
mergeLocalToProto();
proto = viaProto ? proto : builder.build();
@ -142,7 +142,7 @@ private void maybeInitBuilder() {
}
@Override
public ContainerId getId() {
synchronized public ContainerId getId() {
ContainerProtoOrBuilder p = viaProto ? proto : builder;
if (this.containerId != null) {
return this.containerId;
@ -176,7 +176,7 @@ public NodeId getNodeId() {
}
@Override
public void setId(ContainerId id) {
synchronized public void setId(ContainerId id) {
maybeInitBuilder();
if (id == null)
builder.clearId();