wangzzu commented on a change in pull request #13024:
URL: https://github.com/apache/flink/pull/13024#discussion_r466108172



##########
File path: 
flink-clients/src/main/java/org/apache/flink/client/deployment/application/ApplicationDispatcherBootstrap.java
##########
@@ -293,10 +294,15 @@ private void runApplicationEntryPoint(
                        }
 
                        if (serializedThrowable.isPresent()) {
-                               Throwable throwable =
-                                               serializedThrowable
-                                                               .get()
-                                                               
.deserializeError(application.getUserCodeClassLoader());
+                               Throwable throwable;
+                               try {
+                                       throwable = serializedThrowable
+                                                       .get()
+                                                       
.deserializeError(application.getUserCodeClassLoader());
+                               } catch (ProgramInvocationException e) {

Review comment:
       fixed




----------------------------------------------------------------
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]


Reply via email to