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

Commit 070869d1 by Daniel Durante

Merge pull request #831 from durango/pg-con

Postgres connector-manager no longer needs to encode the username or pas...
2 parents 6fc3d546 e56730eb
Showing with 2 additions and 2 deletions
......@@ -711,8 +711,8 @@ module.exports = (function() {
var template = '<%= protocol %>://<%= user %>:<%= password %>@<%= host %><% if(port) { %>:<%= port %><% } %>/<%= database %>'
return Utils._.template(template)({
user: encodeURIComponent(config.username),
password: encodeURIComponent(config.password),
user: config.username,
password: config.password,
database: config.database,
host: config.host,
port: config.port,
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!