From c763445e6e70db881c72ec9a4f731ed1c80db12d Mon Sep 17 00:00:00 2001 From: CalDescent Date: Sun, 21 May 2023 19:51:22 +0100 Subject: [PATCH] Log to console if an extra core restart is needed to complete the update process (this needed ins some cases after bootstrapping). --- src/main/java/org/qortal/controller/Controller.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/qortal/controller/Controller.java b/src/main/java/org/qortal/controller/Controller.java index 72ee9b99..e1e90486 100644 --- a/src/main/java/org/qortal/controller/Controller.java +++ b/src/main/java/org/qortal/controller/Controller.java @@ -444,6 +444,7 @@ public class Controller extends Thread { if (RepositoryManager.needsTransactionSequenceRebuild(repository)) { // Don't allow the node to start if transaction sequences haven't been built yet // This is needed to handle a case when bootstrapping + LOGGER.error("Database upgrade needed. Please restart the core to complete the upgrade process."); Gui.getInstance().fatalError("Database upgrade needed", "Please restart the core to complete the upgrade process."); return; }