mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
Get the client working as expected with pg 8
This commit is contained in:
parent
3a17c86a0f
commit
9a692ed652
1 changed files with 12 additions and 8 deletions
|
@ -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 {
|
||||
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);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue