Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-14840] Use correct filename when saving graph config.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Feb 15, 2013
1 parent b506c41 commit 235e180
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -80,7 +80,7 @@ public String getUrl() {

@Override
protected void persistValue(final String value, final String pluginName, final StaplerRequest request, final StaplerResponse response) throws FileNotFoundException, IOException {
FileOutputStream output = new FileOutputStream(createDefaultsFile(getOwner(), getKey()));
FileOutputStream output = new FileOutputStream(createDefaultsFile(getOwner(), pluginName));
try {
IOUtils.write(value, output);
}
Expand Down

0 comments on commit 235e180

Please sign in to comment.