dmvk commented on a change in pull request #18536:
URL: https://github.com/apache/flink/pull/18536#discussion_r798479815
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/DefaultJobGraphStore.java
##########
@@ -252,9 +255,11 @@ public void putJobGraph(JobGraph jobGraph) throws
Exception {
synchronized (lock) {
verifyIsRunning();
- if (addedJobGraphs.contains(jobId)) {
+ if (addedJobGraphs.contains(jobId)
+ || locallyReleasedJobGraphs.contains(jobId)) {
Review comment:
why do we need this? I thought we should always call either local or
global cleanup, not both. What am I missing?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]