Fix local name

This commit is contained in:
John Crepezzi 2020-10-06 21:02:16 -04:00
parent f147acb51c
commit 219424550b
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ PostgresDocumentStore.prototype = {
// A connection wrapper
safeConnect: function (callback) {
this.pool.connect((err, client, done) => {
if (err) {
this.pool.connect((error, client, done) => {
if (error) {
winston.error('error connecting to postgres', {error});
callback(error);
} else {