don't throw away the postgres client's password

broken by tgriesser/knex#390
This commit is contained in:
Neil Gentleman 2014-08-20 15:52:19 -07:00
parent 571f233cac
commit ab4c6dabbc

View File

@ -108,6 +108,7 @@ Client_PG.prototype.acquireRawConnection = Promise.method(function(callback) {
database : connection.connectionParameters.database,
port : connection.connectionParameters.port,
host : connection.connectionParameters.host,
password : connection.connectionParameters.password
};
return new Promise(function(resolver, rejecter) {