mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
fix: an hour is 3600000 seconds not 60000 seconds
This commit is contained in:
parent
447e44ee77
commit
40a358ac78
@ -5,13 +5,14 @@ const session = require('express-session');
|
|||||||
const KnexSessionStore = require('connect-session-knex')(session);
|
const KnexSessionStore = require('connect-session-knex')(session);
|
||||||
|
|
||||||
const TWO_DAYS = 48 * 60 * 60 * 1000;
|
const TWO_DAYS = 48 * 60 * 60 * 1000;
|
||||||
|
const HOUR = 60 * 60 * 1000;
|
||||||
function sessionDb(
|
function sessionDb(
|
||||||
config: Pick<IUnleashConfig, 'session' | 'server' | 'secureHeaders'>,
|
config: Pick<IUnleashConfig, 'session' | 'server' | 'secureHeaders'>,
|
||||||
stores: Pick<IUnleashStores, 'db'>,
|
stores: Pick<IUnleashStores, 'db'>,
|
||||||
): any {
|
): any {
|
||||||
let store;
|
let store;
|
||||||
const { db } = config.session;
|
const { db } = config.session;
|
||||||
const age = config.session.ttlHours * 60000 || TWO_DAYS;
|
const age = config.session.ttlHours * HOUR || TWO_DAYS;
|
||||||
if (db) {
|
if (db) {
|
||||||
store = new KnexSessionStore({
|
store = new KnexSessionStore({
|
||||||
knex: stores.db,
|
knex: stores.db,
|
||||||
|
Loading…
Reference in New Issue
Block a user