Merge pull request #100 from hl-archive-node/feat/deprecate-migrator

feat: Place migrator behind `CHECK_DB_MIGRATION` env
This commit is contained in:
sprites0
2025-11-01 06:23:01 -04:00
committed by GitHub

View File

@ -145,8 +145,12 @@ where
match self.command {
Commands::Node(command) => runner.run_command_until_exit(|ctx| {
// NOTE: This is for one time migration around Oct 10 upgrade:
// It's not necessary anymore, an environment variable gate is added here.
if std::env::var("CHECK_DB_MIGRATION").is_ok() {
Self::migrate_db(&command.chain, &command.datadir, &command.db)
.expect("Failed to migrate database");
}
command.execute(ctx, FnLauncher::new::<C, Ext>(launcher))
}),
Commands::Init(command) => {