Skip to content

Commit 24ddb7c

Browse files
denchistyakovqfox
authored andcommitted
Fix creation of Pool with connection string passed by string
1 parent 60d8df6 commit 24ddb7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ var Pool = require('pg-pool')
1515

1616
const poolFactory = (Client) => {
1717
var BoundPool = function (options) {
18+
if (typeof options === 'string') {
19+
options = { connectionString: options }
20+
}
1821
var config = Object.assign({ Client: Client }, options)
1922
return new Pool(config)
2023
}

0 commit comments

Comments
 (0)