Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
endpoint too slow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Aug 19, 2015
1 parent b5438db commit 21b37b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks/test-urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ function testUrls (opts) {

})
.catch(function(err) {
failures.push('endpoint too slow');
if (err.message.indexOf('timeout') > -1 ) {
failures.push('endpoint too slow');
}
});
}
checker = setInterval(checkGtg, 3000);
Expand Down

0 comments on commit 21b37b8

Please sign in to comment.