Say fallback, not failover — the synonym was silently matching nothing in three renderers, plus retrying probes and a 2-minute handback window
This commit is contained in:
@@ -1204,7 +1204,7 @@ function vvPollMonitor(live) {
|
||||
// ── State label + outage duration ──────────────────────────────────────
|
||||
let stateExtra = '';
|
||||
if (state === 'FALLBACK' || state === 'DARK') {
|
||||
const start = parseInt(fb.failover_start ?? 0);
|
||||
const start = parseInt(fb.fallback_start ?? 0);
|
||||
if (start > 0) {
|
||||
const sec = Math.floor(Date.now() / 1000) - start;
|
||||
stateExtra = ` · ${Math.floor(sec/3600)}h ${Math.floor((sec%3600)/60)}m`;
|
||||
@@ -1267,7 +1267,7 @@ function vvPollMonitor(live) {
|
||||
</div>`;
|
||||
}
|
||||
|
||||
// ── Tier badges (FAILOVER only) ────────────────────────────────────────
|
||||
// ── Tier badges (FALLBACK only) ────────────────────────────────────────
|
||||
if (state === 'FALLBACK') {
|
||||
const t2 = fb.tier2_started === 'true';
|
||||
const t3 = fb.tier3_started === 'true';
|
||||
|
||||
Reference in New Issue
Block a user