Clear timers in update-times service

It's mostly relevant in tests, because service is destroyed when test
end and then we don't want to run any timers.
This commit is contained in:
Piotr Sarnacki 2016-03-02 12:50:06 +01:00
parent 09637d5e07
commit ef583a7d54

View File

@ -6,12 +6,18 @@ export default Ember.Service.extend({
allowFinishedBuilds: false,
init() {
Visibility.every(Config.intervals.updateTimes, this.updateTimes.bind(this));
setInterval(this.resetAllowFinishedBuilds.bind(this), 60000);
this.set('visibilityId', Visibility.every(Config.intervals.updateTimes, this.updateTimes.bind(this)));
this.set('intervalId', setInterval(this.resetAllowFinishedBuilds.bind(this), 60000));
return this._super(...arguments);
},
willDestroy() {
Visibility.stop(this.get('visibilityId'));
clearInterval(this.get('intervalId'));
this._super(...arguments);
},
resetAllowFinishedBuilds() {
this.set('allowFinishedBuilds', true);
},