jshint: fix Bad line breaking

This commit is contained in:
Raul Ochoa
2015-03-15 23:44:45 +01:00
parent e4da13189d
commit fda8afdaf2
6 changed files with 22 additions and 27 deletions
+3 -3
View File
@@ -36,11 +36,11 @@ module.exports.query = function (username, api_key, sql, callback) {
var reqSpec = {
url:sqlapi,
json:true,
headers:{host: sqlapihostname}
headers:{host: sqlapihostname},
// http://nodejs.org/api/http.html#http_agent_maxsockets
,pool:{maxSockets:maxSockets}
pool:{maxSockets:maxSockets},
// timeout in milliseconds
,timeout:maxSQLTime
timeout:maxSQLTime
};
if ( sql.length > maxGetLen ) {
reqSpec.method = 'POST';