Do not force ending dot in SQL-API hostname, for easier testing

This commit is contained in:
Sandro Santilli
2013-12-17 17:17:14 +01:00
parent 428e8631e2
commit 12f0826d32
2 changed files with 4 additions and 1 deletions
+1
View File
@@ -4,6 +4,7 @@
* Add support for specifying database connection passwords
* Add support for reading user-specific database_host from redis,
as per CartoDB-2.5.0 model (#88)
* Do not force ending dot in SQL-API hostname, for easier testing
1.4.1 -- 2013-11-08
-------------------
+3 -1
View File
@@ -67,7 +67,9 @@ module.exports = function(){
var api = global.environment.sqlapi;
// build up api string
var sqlapi = api.protocol + '://' + username + '.' + api.domain + ':' + api.port + '/api/' + api.version + '/sql'
var sqlapi = api.protocol + '://' + username;
if ( api.domain ) sqlapi += '.' + api.domain;
sqlapi += ':' + api.port + '/api/' + api.version + '/sql'
var qs = { q: sql }