Skip to content

Commit c9eaa5d

Browse files
authored
[JENKINS-76202] Avoid stack overflow when new run UI is enabled (#11203)
1 parent 389e3df commit c9eaa5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/hudson/model/Run.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ public void reload() throws IOException {
387387
*/
388388
@SuppressWarnings("deprecation")
389389
protected void onLoad() {
390-
for (Action a : getAllActions()) {
390+
for (Action a : getActions()) {
391391
if (a instanceof RunAction2) {
392392
try {
393393
((RunAction2) a).onLoad(this);

0 commit comments

Comments
 (0)