Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/1048#discussion_r37756350
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/client/JobClientActor.java
---
@@ -128,6 +128,13 @@ else if (message instanceof Status.Success) {
// job was successfully submitted :-)
logger.info("Job was successfully submitted to the
JobManager");
}
+ else if (message instanceof JobClientMessages.JobFailure) {
--- End diff --
Wrapping the `SerializedThrowable` in a `Failure` would allow us to get rid
off this if branch.
---
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.
---