This is an automated email from the ASF dual-hosted git repository. roman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push: new 2cd8a1428ce [FLINK-38113] Rethrow fatal (including OOM) errors in Execution.deploy 2cd8a1428ce is described below commit 2cd8a1428ce4e678ef546e0b22293c72c1bc9191 Author: Aleksandr Iushmanov <aiushma...@confluent.io> AuthorDate: Thu Jul 17 09:51:32 2025 +0100 [FLINK-38113] Rethrow fatal (including OOM) errors in Execution.deploy --- .../src/main/java/org/apache/flink/runtime/executiongraph/Execution.java | 1 + 1 file changed, 1 insertion(+) diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java index 566bbe949e6..d2683b3373c 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java +++ b/flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java @@ -671,6 +671,7 @@ public class Execution jobMasterMainThreadExecutor); } catch (Throwable t) { + ExceptionUtils.rethrowIfFatalErrorOrOOM(t); markFailed(t); } }