Possible EventEmitter memory leak detected. 11 sendDatatoRoom listeners added to [EventEmitter]. Use emitter.setMaxListeners() to increase limit(solved)

hello I hope you are well, I'm trying to create a project to support 1000 clients for that I used the colyseus server template and for the client side I created a threejs client, I established communication between the rooms using the pub/sub, I used the colyseus load test but I have this error, to check that it is not a problem of resources I tested on a very powerful pc but I had the same error so it's not a problem of resources
0_1650888438158_52a93457-4a46-49fc-857f-0b92009f81ef-image.png
0_1650888468970_8ade7542-6c7e-42c2-9575-4f4ecd9e2d69-image.png

Hi.
It's a limitation of NodeJS.
Try to use require('events').EventEmitter.defaultMaxListeners = 0;
to remove the limitation.

@COCO
Hello thank you for your response.