patch weird event max listeners bug

This commit is contained in:
Jonathan Rainville 2018-06-01 13:29:51 -04:00
parent 73fca42ce1
commit f3d55f6742
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ function log(eventType, eventName) {
//console.log(eventType, eventName);
}
EventEmitter.prototype._maxListeners = 200;
EventEmitter.prototype._maxListeners = 300;
const _on = EventEmitter.prototype.on;
const _setHandler = EventEmitter.prototype.setHandler;