mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
increase stdout max listeners for legacy logging (#84497)
* increase stdout max listeners for legacy logging * add missing packages to CODEOWNERS
This commit is contained in:
parent
a2b71f8bf9
commit
b99abe301a
2 changed files with 4 additions and 1 deletions
3
.github/CODEOWNERS
vendored
3
.github/CODEOWNERS
vendored
|
@ -187,6 +187,9 @@
|
|||
/x-pack/test/saved_object_tagging/ @elastic/kibana-core
|
||||
/packages/kbn-config-schema/ @elastic/kibana-core
|
||||
/packages/kbn-std/ @elastic/kibana-core
|
||||
/packages/kbn-config/ @elastic/kibana-core
|
||||
/packages/kbn-logging/ @elastic/kibana-core
|
||||
/packages/kbn-legacy-logging/ @elastic/kibana-core
|
||||
/src/legacy/server/config/ @elastic/kibana-core
|
||||
/src/legacy/server/http/ @elastic/kibana-core
|
||||
/src/legacy/server/logging/ @elastic/kibana-core
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue