Skip to content

Commit

Permalink
Fix incorrect config validation on SIGHUP (#61246) (#61372)
Browse files Browse the repository at this point in the history
Co-authored-by: Rudolf Meijering <[email protected]>
  • Loading branch information
joshdover and rudolf authored Mar 26, 2020
1 parent 22a3b25 commit b75e48f
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 b75e48f

Please sign in to comment.