Skip to content

Commit

Permalink
fix ut but possible memory leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaslabbe committed Oct 18, 2016
1 parent ce2d56f commit 5f0748f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/core/manager/Manager.js
Expand Up @@ -55,8 +55,8 @@ class Manager {

_watchersStart() {
this.events = {
template: new events.EventEmitter(),
structure: new events.EventEmitter()
template: new events.EventEmitter(0),
structure: new events.EventEmitter(0)
}

this._watchTemplateFolder = watch.createMonitor(this._pathTemplate, (monitor) => {
Expand Down

0 comments on commit 5f0748f

Please sign in to comment.