Fix english of error message for sql-api connection problems

This commit is contained in:
Sandro Santilli 2013-12-18 12:59:26 +01:00
parent 277c00c7f8
commit 50a902a90b

View File

@ -80,7 +80,7 @@ module.exports = function(){
// call sql api
request.get({url:sqlapi, qs:qs, json:true}, function(err, res, body){
if (err){
console.log('ERROR running connecting to SQL API on ' + sqlapi + ': ' + err);
console.log('ERROR connecting to SQL API on ' + sqlapi + ': ' + err);
callback(err);
return;
}