Reduce automatic pinging

This commit is contained in:
LukeGus
2025-08-27 11:34:38 -05:00
parent a34c60947d
commit d88c890ba7
3 changed files with 33 additions and 10 deletions

View File

@@ -415,7 +415,8 @@ app.listen(PORT, async () => {
}
});
setInterval(() => {
pollStatusesOnce().catch(err => logger.error('Background poll failed', err));
}, 60_000);
// Disable automatic background polling to prevent log flooding
// setInterval(() => {
// pollStatusesOnce().catch(err => logger.error('Background poll failed', err));
// }, 60_000);