mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 14:05:46 +01:00
closed #502
This commit is contained in:
@@ -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