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

    https://github.com/apache/flink/pull/6274#discussion_r200638465
  
    --- Diff: 
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/JobPlanInfo.java
 ---
    @@ -67,47 +72,88 @@ public int hashCode() {
                return Objects.hash(jsonPlan);
        }
     
    -   
//---------------------------------------------------------------------------------
    -   // Static helper classes
    -   
//---------------------------------------------------------------------------------
    +   @Override
    +   public String toString() {
    +           return "JobPlanInfo{" +
    +                   "jsonPlan=" + jsonPlan +
    +                   '}';
    +   }
     
    -   /**
    -    * Json serializer for the {@link JobPlanInfo}.
    -    */
    -   public static final class Serializer extends StdSerializer<JobPlanInfo> 
{
    +   @JsonSerialize(using = RawJson.Serializer.class)
    --- End diff --
    
    seems missed Java Doc here~


---

Reply via email to