You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See screen grab. The first progress bar completes when it gets to the constructed total. The second one has duplicates progress data.
(this time with correct screen grab)
The text was updated successfully, but these errors were encountered:
If you have multiple instances of pace running in various parts of your application, from the second run onwards you might notice that the progress bar is not rendered correctly with duplicate output.
This effect is additive for each time pace is required with the same stream.
Cause: The problem is with pace dependency charm. In node.js 0.10 the EventEmitter constructor explicitly initializes this._events, so going Charm.prototype = new Stream; causes all Charm instances to share the same _events property.
Fix: Change the charm main module file index.js and replace Charm.prototype = new Stream; with Charm.prototype = Stream.prototype;
See screen grab. The first progress bar completes when it gets to the constructed total. The second one has duplicates progress data.
(this time with correct screen grab)
The text was updated successfully, but these errors were encountered: