Add --reindex command line parameter to force full re-indexing

This commit is contained in:
nymkappa
2022-02-21 16:38:18 +09:00
parent e5907159b8
commit bb1c5d0b31
2 changed files with 29 additions and 0 deletions

View File

@@ -89,6 +89,12 @@ class Server {
if (config.DATABASE.ENABLED) {
await checkDbConnection();
try {
if (process.env.npm_config_reindex != undefined) { // Re-index requests
const tables = process.env.npm_config_reindex.split(',');
logger.warn(`Indexed data for "${process.env.npm_config_reindex}" tables will be erased in 5 seconds from now (using '--reindex') ...`);
await Common.sleep(5000);
await databaseMigration.$truncateIndexedData(tables);
}
await databaseMigration.$initializeOrMigrateDatabase();
await poolsParser.migratePoolsJson();
} catch (e) {