提交 6d3ed4c1 编写于 作者: K kohsuke

[FIXED HUDSON-840] in 1.316.

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@19582 71c3de6d-444a-0410-be80-ed276b4c234a
上级 2214e8df
......@@ -201,22 +201,22 @@ public abstract class Project<P extends Project<P,B>,B extends Build<P,B>>
synchronized(transientActions) {
super.updateTransientActions();
for (BuildStep step : builders) {
for (BuildStep step : getBuildersList()) {
Action a = step.getProjectAction(this);
if(a!=null)
transientActions.add(a);
}
for (BuildStep step : publishers) {
for (BuildStep step : getPublishersList()) {
Action a = step.getProjectAction(this);
if(a!=null)
transientActions.add(a);
}
for (BuildWrapper step : buildWrappers) {
for (BuildWrapper step : getBuildWrappers().values()) {
Action a = step.getProjectAction(this);
if(a!=null)
transientActions.add(a);
}
for (Trigger trigger : triggers) {
for (Trigger trigger : getTriggers().values()) {
Action a = trigger.getProjectAction();
if(a!=null)
transientActions.add(a);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册