Skip to content

Commit

Permalink
If the DescribableList is modified, transient actions need to be rebu…
Browse files Browse the repository at this point in the history
…ilt.
  • Loading branch information
kohsuke committed Jan 5, 2013
1 parent ffe5a3d commit 4cab495
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/main/java/hudson/model/AbstractProject.java
Expand Up @@ -260,6 +260,12 @@ protected AbstractProject(ItemGroup parent, String name) {
}
}

@Override
public synchronized void save() throws IOException {
super.save();

This comment has been minimized.

Copy link
@kutzi

kutzi Feb 2, 2013

Member

Not 100% sure, yet, but seems like this caused https://issues.jenkins-ci.org/browse/JENKINS-16499

This comment has been minimized.

updateTransientActions();
}

@Override
public void onCreatedFromScratch() {
super.onCreatedFromScratch();
Expand Down

0 comments on commit 4cab495

Please sign in to comment.