Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
typerandom committed Jul 29, 2016
1 parent f18e40d commit a78525c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ds/RequestExecutor.js
Expand Up @@ -78,6 +78,7 @@ RequestExecutor.prototype.execute = function executeRequest(req, callback) {

request(options, function onRequestResult(err, response, body) {
var responseContext = this;

if (err) {
var wrapper = new Error('Unable to execute http request ' + req.method + ' ' + req.uri + ': ' + err.message);
wrapper.inner = err;
Expand All @@ -97,8 +98,6 @@ RequestExecutor.prototype.execute = function executeRequest(req, callback) {
}else{
callback(null, body);
}


});
};

Expand Down

0 comments on commit a78525c

Please sign in to comment.