zentol commented on a change in pull request #13553:
URL: https://github.com/apache/flink/pull/13553#discussion_r502327559
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/resourcemanager/ResourceManager.java
##########
@@ -1190,6 +1215,11 @@ public void notifyAllocationFailure(JobID jobId,
AllocationID allocationId, Exce
jobManagerRegistration.getJobManagerGateway().notifyAllocationFailure(allocationId,
cause);
}
}
+
+ @Override
+ public void notifyNotEnoughResourcesAvailable(JobID jobId,
Collection<ResourceRequirement> acquiredResources) {
+ validateRunsInMainThread();
+ }
Review comment:
The call to JobMaster#notifyNotEnoughResourcesAvailable; but that wasn't
added yet because I only wanted to touch the RM side.
----------------------------------------------------------------
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]