不要怂,就是干,撸起袖子干!

Commit 57cfac48 by Daniel Schwartz

flipping port checker and removing console statement

1 parent 4903a957
Showing with 1 additions and 3 deletions
...@@ -44,9 +44,7 @@ module.exports = (function() { ...@@ -44,9 +44,7 @@ module.exports = (function() {
this.isConnecting = true this.isConnecting = true
this.isConnected = false this.isConnected = false
var conStr = '<%= protocol %>://<%= user %>:<%= password %>@<%= host %><% if(!port) { %>:<%= port %><% } %>/<%= database %>'; var conStr = '<%= protocol %>://<%= user %>:<%= password %>@<%= host %><% if(port) { %>:<%= port %><% } %>/<%= database %>';
console.log(conStr);
conStr = Utils._.template(conStr)({ conStr = Utils._.template(conStr)({
user: this.config.username, user: this.config.username,
password: this.config.password, password: this.config.password,
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!