@evident-ai/cli 3.4.1-dev.4c80d87 → 3.4.1-dev.57ff127

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1537,12 +1537,6 @@ function buildSessionDbRecoveryActivity(record) {
1537
1537
  metadata: withoutContractFields(record),
1538
1538
  message: "This runner started with a fresh session database because it could not verify where its session history is backed up. Nothing in the backup was changed; check the runner backup configuration and permissions."
1539
1539
  };
1540
- case "session_db_boot_refused":
1541
- return {
1542
- level,
1543
- metadata: withoutContractFields(record),
1544
- message: `This runner did not come online because its damaged session database could not be safely separated from its active backup or proven removed. Backed-up session history remains readable at ${record.quarantine_destination ?? "its original location or the quarantine destination named in the boot logs"}; any local session-database files that remain were left in place and nothing opened or wrote them. See the runner boot logs for SESSION-DB-LOCAL-DISCARD-FAILED details.`
1545
- };
1546
1540
  default:
1547
1541
  return null;
1548
1542
  }
@@ -1556,8 +1550,7 @@ var OUTCOMES = /* @__PURE__ */ new Set([
1556
1550
  "restore_retried",
1557
1551
  "fresh_session_db",
1558
1552
  "history_rolled_back",
1559
- "restore_misconfigured",
1560
- "session_db_boot_refused"
1553
+ "restore_misconfigured"
1561
1554
  ]);
1562
1555
  var STAGES = /* @__PURE__ */ new Set(["restore", "verify"]);
1563
1556
  var SEVERITIES = /* @__PURE__ */ new Set(["warning", "error"]);