patch weird event max listeners bug

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

View File

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