Do not swallow all errors.

This commit is contained in:
Julien Fontanet 2015-04-20 19:01:05 +02:00
parent 5c31c7f14c
commit 3af6c28ab0

View File

@ -373,7 +373,7 @@ export class Xapi extends EventEmitter {
this._objects.clear()
}).then(() => {
this._watchEvents()
}).catch(noop)
}).catch(Bluebird.CancellationError, noop)
}
}