From 6b140569615179d01669ea7c4308ae65430134c9 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Mon, 18 May 2026 18:00:52 +0200 Subject: [PATCH] fix(pangolin): remove redundant msg_info in migration check --- ct/pangolin.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ct/pangolin.sh b/ct/pangolin.sh index 9863c2c7d..027f68aec 100644 --- a/ct/pangolin.sh +++ b/ct/pangolin.sh @@ -84,7 +84,6 @@ function update_script() { SQLITE_DB="/opt/pangolin/config/db/db.sqlite" if [[ -f "$SQLITE_DB" ]]; then if ! sqlite3 "$SQLITE_DB" ".tables" 2>/dev/null | tr ' ' '\n' | grep -qx "statusHistory"; then - msg_info "Detected missing statusHistory table, resetting migration state" sqlite3 "$SQLITE_DB" "DELETE FROM versionMigrations;" 2>/dev/null || true fi fi