Skip to content

Commit

Permalink
increase stdout max listeners for legacy logging (elastic#84497)
Browse files Browse the repository at this point in the history
* increase stdout max listeners for legacy logging

* add missing packages to CODEOWNERS
# Conflicts:
#	.github/CODEOWNERS
  • Loading branch information
pgayvallet committed Nov 30, 2020
1 parent f866385 commit 7132c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-legacy-logging/src/setup_logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export async function setupLogging(
// thrown every time we start the server.
// In order to keep using the legacy logger until we remove it I'm just adding
// a new hard limit here.
process.stdout.setMaxListeners(25);
process.stdout.setMaxListeners(40);

return await server.register({
plugin: good,
Expand Down

0 comments on commit 7132c3e

Please sign in to comment.