From df955a217622ebf7f008e9be86a840b53fd0dd31 Mon Sep 17 00:00:00 2001 From: Markus Winter Date: Wed, 15 Oct 2025 15:38:28 +0200 Subject: [PATCH] [JENKINS-76202] Avoid stack overflow when new run UI is enabled The combination of a maven job with a run, naginator plugin installed and the new run UI leads to a stack overflow when accessing the All view and also when accessing the maven job. --- core/src/main/java/hudson/model/Run.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/model/Run.java b/core/src/main/java/hudson/model/Run.java index b0b72dda081f..c206539a4605 100644 --- a/core/src/main/java/hudson/model/Run.java +++ b/core/src/main/java/hudson/model/Run.java @@ -387,7 +387,7 @@ public void reload() throws IOException { */ @SuppressWarnings("deprecation") protected void onLoad() { - for (Action a : getAllActions()) { + for (Action a : getActions()) { if (a instanceof RunAction2) { try { ((RunAction2) a).onLoad(this);