Cleanup - Bug Fixes

This commit is contained in:
Raven Scott
2026-05-30 22:27:42 -04:00
parent 229271fbcf
commit 4b9eb916e9
61 changed files with 733 additions and 6944 deletions
+4
View File
@@ -334,6 +334,7 @@ function startHealthChecks() {
}
healthCheckInterval = setInterval(async () => {
try {
const keysToCheck = Array.from(state.holesails.keys());
if (keysToCheck.length === 0) {
@@ -397,6 +398,9 @@ function startHealthChecks() {
logDebug('Holesail', `Health check passed for ${key}`);
}
}
} catch (err) {
logError('Holesail', `Health check cycle failed: ${err.message}`);
}
}, intervalMs);
logInfo('Holesail', `Started periodic health checks (interval: ${intervalMs}ms)`);