azagrebin commented on a change in pull request #8362: [FLINK-11391] Introduce shuffle master interface URL: https://github.com/apache/flink/pull/8362#discussion_r289811563
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ExecutionJobVertex.java ########## @@ -390,10 +390,16 @@ public InputDependencyConstraint getInputDependencyConstraint() { jobVertex.getInvokableClassName(), jobVertex.getConfiguration()); - taskInformationOrBlobKey = BlobWriter.serializeAndTryOffload( - taskInformation, - getJobId(), - blobWriter); + try { + taskInformationOrBlobKey = BlobWriter.serializeAndTryOffload( + taskInformation, + getJobId(), + blobWriter); + } catch (IOException e) { + throw new ExecutionGraphException( Review comment: True, just some leftover from another refactoring attempt. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services