Commit 21942455 authored by John Crepezzi's avatar John Crepezzi
Browse files

Fix local name

parent f147acb5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 {