Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Load after setting default config values. Fixes JENKINS-27222
  • Loading branch information
halkeye committed Mar 6, 2015
1 parent 01bb8e9 commit 4b7d588
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,11 +107,11 @@ public GlobalConfigurationImpl(final boolean enabled,
final int queryTimeout, final int notificationTimeout,
final boolean allResults) {
super();
load();
this.enabled = enabled;
this.queryTimeout = queryTimeout;
this.notificationTimeout = notificationTimeout;
this.allResults = allResults;
load();
}

@Override
Expand Down

0 comments on commit 4b7d588

Please sign in to comment.