Skip to content

Commit

Permalink
[FIXED JENKINS-33249] save config to disk :(
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Alvizu committed Mar 1, 2016
1 parent 118fae2 commit 3c92199
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/jenkinsci/plugins/jiraext/Config.java
Expand Up @@ -155,7 +155,8 @@ public boolean configure(StaplerRequest req, JSONObject formData) throws FormExc
setPattern(formData.getString("pattern"));
setVerboseLogging(formData.getBoolean("verboseLogging"));
setTimeout(formData.getInt("timeout"));
return true;
save();
return super.configure(req, formData);
}

public void setTimeout(Integer timeoutInSeconds)
Expand Down

0 comments on commit 3c92199

Please sign in to comment.