Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5589#discussion_r170917538
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/job/JobDetailsInfo.java
---
@@ -165,6 +165,54 @@ public int hashCode() {
return Objects.hash(jobId, name, isStoppable, jobStatus,
startTime, endTime, duration, now, timestamps, jobVertexInfos,
jobVerticesPerState, jsonPlan);
}
+ public JobID getJobId() {
+ return jobId;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public boolean isStoppable() {
--- End diff --
can you try annotating this one with `@JsonIgnore` and seeing what is sent?
Jackson analyzes getters and this may mess with the resulting JSON.
---