mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 04:25:55 +01:00
closed #502
This commit is contained in:
@@ -253,6 +253,11 @@ var async = require('async'),
|
||||
}
|
||||
});
|
||||
}, next);
|
||||
},
|
||||
function (next) {
|
||||
// Upgrading schema
|
||||
var Upgrade = require('./upgrade');
|
||||
Upgrade.upgrade(next);
|
||||
}
|
||||
], function (err) {
|
||||
if (err) {
|
||||
|
||||
@@ -20,7 +20,7 @@ Upgrade.check = function(callback) {
|
||||
});
|
||||
};
|
||||
|
||||
Upgrade.upgrade = function() {
|
||||
Upgrade.upgrade = function(callback) {
|
||||
winston.info('Beginning Redis database schema update');
|
||||
|
||||
async.series([
|
||||
@@ -136,13 +136,19 @@ Upgrade.upgrade = function() {
|
||||
RDB.set('schemaDate', thisSchemaDate, function(err) {
|
||||
if (!err) {
|
||||
winston.info('[upgrade] Redis schema update complete!');
|
||||
process.exit();
|
||||
if (callback) {
|
||||
callback(err);
|
||||
} else {
|
||||
process.exit();
|
||||
}
|
||||
} else {
|
||||
winston.error('[upgrade] Could not update NodeBB schema date!');
|
||||
process.exit();
|
||||
}
|
||||
});
|
||||
} else {
|
||||
winston.error('[upgrade] Errors were encountered while updating the NodeBB schema: ' + err.message);
|
||||
process.exit();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user