Github user uce commented on a diff in the pull request:

    https://github.com/apache/flink/pull/3117#discussion_r96228294
  
    --- Diff: 
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamNode.java
 ---
    @@ -272,12 +273,20 @@ public void setStateKeySerializer(TypeSerializer<?> 
stateKeySerializer) {
                this.stateKeySerializer = stateKeySerializer;
        }
     
    -   public String getTransformationId() {
    -           return transformationId;
    +   public String getTransformationUID() {
    +           return transformationUID;
        }
     
    -   void setTransformationId(String transformationId) {
    -           this.transformationId = transformationId;
    +   void setTransformationUID(String transformationId) {
    +           this.transformationUID = transformationId;
    +   }
    +
    +   public String getUserHash() {
    +           return userHash;
    +   }
    +
    +   public void setUserHash(String userHash) {
    +           this.userHash = userHash;
    --- End diff --
    
    Since this is executed on the client before submitting the job it might be 
helpful to do some early sanity checking here. The expected String is a hex 
representation of a JobVertexID


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to