Parse the expiration time as an INT (#392)

* handle expire time as int

* Removed logging

* Update lib/document_stores/postgres.js
This commit is contained in:
Linus J 2022-02-14 20:48:23 +01:00 committed by GitHub
parent 1ea6b6e99d
commit 3dcc43578b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const {Pool} = require('pg');
// A postgres document store
var PostgresDocumentStore = function (options) {
this.expireJS = options.expire;
this.expireJS = parseInt(options.expire, 10);
const connectionString = process.env.DATABASE_URL || options.connectionUrl;
this.pool = new Pool({connectionString});