Get the client working as expected with pg 8

This commit is contained in:
John Crepezzi 2020-10-06 20:52:48 -04:00
parent 3a17c86a0f
commit 9a692ed652
1 changed files with 12 additions and 8 deletions

View File

@ -1,7 +1,7 @@
/*global require,module,process*/
var postgres = require('pg');
var winston = require('winston');
const {Client} = require('pg');
// create table entries (id serial primary key, key varchar(255) not null, value text not null, expiration int, unique(key));
@ -64,13 +64,17 @@ PostgresDocumentStore.prototype = {
// A connection wrapper
safeConnect: function (callback) {
postgres.connect(this.connectionUrl, function (err, client, done) {
if (err) {
winston.error('error connecting to postgres', { error: err });
callback(err);
} else {
callback(undefined, client, done);
}
const client = new Client({connectionString: this.connectionUrl});
const connectionPromise = client.connect();
const done = () => {};
connectionPromise.then(() => {
callback(undefined, client, done);
}).catch((error) => {
console.log(error);
winston.error('error connecting to postgres', {error});
callback(error);
});
}