Skip to content

Commit

Permalink
Fix incorrect config validation on SIGHUP (elastic#61246)
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolf authored and joshdover committed Mar 25, 2020
1 parent eb46653 commit 7893406
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/legacy/server/kbn_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ export default class KbnServer {
}

applyLoggingConfiguration(settings) {
const config = new Config(this.config.getSchema(), settings);

const config = Config.withDefaultSchema(settings);
const loggingOptions = loggingConfiguration(config);
const subset = {
ops: config.get('ops'),
Expand Down

0 comments on commit 7893406

Please sign in to comment.