austince commented on a change in pull request #15348:
URL: https://github.com/apache/flink/pull/15348#discussion_r604230054



##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/JobGraphJobInformation.java
##########
@@ -50,7 +55,16 @@ public JobGraphJobInformation(JobGraph jobGraph) {
 
     @Override
     public JobInformation.VertexInformation getVertexInformation(JobVertexID 
jobVertexId) {
-        return new JobVertexInformation(jobGraph.findVertexByID(jobVertexId));
+        return new JobVertexInformation(
+                jobGraph.findVertexByID(jobVertexId),
+                vertexParallelismStore
+                        .getParallelismInfo(jobVertexId)
+                        .orElseThrow(

Review comment:
       No, good note. Will move this into the default store. 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to