From 347663716c02d5447cb53fe5882471d88054a5cc Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 13 May 2014 01:20:28 -0700 Subject: [PATCH] Null `_timerId` in `Job#status`. --- test/saucelabs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/saucelabs.js b/test/saucelabs.js index 611d1c07b..74e380deb 100644 --- a/test/saucelabs.js +++ b/test/saucelabs.js @@ -599,6 +599,7 @@ Job.prototype.status = function(callback) { if (this.checking || this.removing || this.resetting || this.restarting || this.starting || this.stopping) { return this; } + this._timerId = null; this.checking = true; request.post(_.template('https://saucelabs.com/rest/v1/${user}/js-tests/status', this), { 'auth': { 'user': this.user, 'pass': this.pass },