fix dbg msg

This commit is contained in:
Matias Alejo Garcia 2014-06-05 18:18:16 -03:00
parent 025cfff8b3
commit f554986dfe
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ Insight.prototype._request = function(options, callback) {
request.open(options.method, url, true);
request.timeout = 5000;
request.ontimeout = function() {
console.log('Insight timeout...retrying', err, self.retryDelay); //TODO
console.log('Insight timeout...retrying');
setTimeout(function() {
return self._request(options,callback);
}, self.retryDelay);