update status intervals

This commit is contained in:
2026-02-13 11:25:02 -06:00
parent b59842899b
commit d0f50141c7
3 changed files with 37 additions and 9 deletions

View File

@@ -244,8 +244,8 @@ function initStatusPage() {
clearInterval(statusIntervalId);
}
fetchStatus();
// Auto-refresh every 5 minutes to get latest data
statusIntervalId = setInterval(fetchStatus, 300000);
// Auto-refresh every 1 minute to get latest data
statusIntervalId = setInterval(fetchStatus, 60000);
}
// Clean up interval when navigating away via SPA