fix: #8560, fix old upgrade script

db.connect no longer exists at the root
v1.18.x
Barış Soner Uşaklı 5 years ago
parent 9cbe9389f5
commit 29e3ab247d

@ -2,6 +2,7 @@
var async = require('async'); var async = require('async');
const nconf = require('nconf');
var db = require('../../database'); var db = require('../../database');
var batch = require('../../batch'); var batch = require('../../batch');
@ -22,10 +23,14 @@ module.exports = {
async.waterfall([ async.waterfall([
function (next) { function (next) {
if (isRedisSessionStore) { if (isRedisSessionStore) {
var rdb = require('../../database/redis'); var connection = require('../../database/redis/connection');
var client = rdb.connect(); var client;
async.waterfall([ async.waterfall([
function (next) { function (next) {
connection.connect(nconf.get('redis'), next);
},
function (_client, next) {
client = _client;
client.keys('sess:*', next); client.keys('sess:*', next);
}, },
function (sessionKeys, next) { function (sessionKeys, next) {

Loading…
Cancel
Save