Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5593#discussion_r171182155
--- Diff:
flink-yarn/src/main/java/org/apache/flink/yarn/AbstractYarnClusterDescriptor.java
---
@@ -321,6 +323,14 @@ public void setZookeeperNamespace(String
zookeeperNamespace) {
this.zookeeperNamespace = zookeeperNamespace;
}
+ public String getNodeLabel() {
+ return nodeLabel;
+ }
+
+ public void setNodeLabel(String nodeLabel) {
+ this.nodeLabel = nodeLabel;
+ }
--- End diff --
Yes, at some point we should change it in order to make it better
maintainable. This will of course not be in the scope of this PR.
---