From 7132c3e6e69e58d2e2f25fcf7183e315ce634aff Mon Sep 17 00:00:00 2001 From: Pierre Gayvallet Date: Mon, 30 Nov 2020 15:32:59 +0100 Subject: [PATCH] increase stdout max listeners for legacy logging (#84497) * increase stdout max listeners for legacy logging * add missing packages to CODEOWNERS # Conflicts: # .github/CODEOWNERS --- packages/kbn-legacy-logging/src/setup_logging.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/kbn-legacy-logging/src/setup_logging.ts b/packages/kbn-legacy-logging/src/setup_logging.ts index 103e81249a136d..3b8b4b167c63dd 100644 --- a/packages/kbn-legacy-logging/src/setup_logging.ts +++ b/packages/kbn-legacy-logging/src/setup_logging.ts @@ -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,