fix: fail updates on activated plugin load errors

This commit is contained in:
Peter Steinberger
2026-04-26 05:57:26 +01:00
parent ad5c00b8e0
commit 73e2151107
10 changed files with 407 additions and 25 deletions

View File

@@ -849,7 +849,7 @@ async function maybeRestartService(params: {
);
}
defaultRuntime.log("");
if (!health.healthy && health.versionMismatch) {
if (!health.healthy && (health.versionMismatch || health.activatedPluginErrors?.length)) {
return false;
}
}