rm redis pass
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Sergo 2023-08-12 11:24:53 +03:00
parent 049e90540d
commit 7a41437121
2 changed files with 0 additions and 2 deletions

View File

@ -13,6 +13,5 @@ module.exports = {
}, },
redis: { redis: {
url: process.env.REDIS_URL, url: process.env.REDIS_URL,
password: process.env.REDIS_PASSWORD,
}, },
}; };

View File

@ -32,7 +32,6 @@ app.use(cookieParser());
if (getEnv() === Env.prod) { if (getEnv() === Env.prod) {
const redisClient = createClient({ const redisClient = createClient({
url: config.get('redis.url'), url: config.get('redis.url'),
password: config.get('redis.password'),
}); });
sessionStore = new RedisStore({ sessionStore = new RedisStore({