Github user StefanRRichter commented on a diff in the pull request:
https://github.com/apache/flink/pull/3770#discussion_r113413839
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/JobVertex.java ---
@@ -50,7 +50,14 @@
/** The ID of the vertex. */
private final JobVertexID id;
- private final ArrayList<JobVertexID> idAlternatives = new ArrayList<>();
+ /** The alternative IDs of the vertex. */
+ private final ArrayList<OperatorID> idAlternatives = new ArrayList<>();
--- End diff --
From the comments, this looks incorrect and I would expect a
`List<JobVertexID>`here
---
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.
---