feat(logging): enhance API request logging and implement noRetry flag for improved error handling and diagnostics
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 1m54s

This commit is contained in:
2026-02-24 13:39:59 +07:00
parent 6290a84cd3
commit 657c23d237
4 changed files with 27 additions and 6 deletions
+5 -5
View File
@@ -436,16 +436,16 @@ function initNetworkMapScheduler(logger, port) {
const intervalMs = settings.intervalMinutes * 60 * 1000;
log.info(
{ component: 'network-map-scheduler', intervalMinutes: settings.intervalMinutes },
'Network map scheduler started (first run in 10 s, then every %d min)',
'Network map scheduler started (runs every %d min by interval only)',
settings.intervalMinutes
);
schedulerTimer = setInterval(() => tick('interval'), intervalMs);
// Первый запуск через 10 сек, чтобы кеш появился вскоре после старта сервера
sendDebugLog('backend/services/networkMapScheduler.js:schedule-startup-tick', 'Startup delayed tick scheduled', {
delayMs: 10000,
// #region agent log
sendDebugLog('backend/services/networkMapScheduler.js:schedule-startup-tick-skipped', 'Startup delayed tick skipped', {
reason: 'disabled_to_avoid_immediate_speedtest_after_restart',
intervalMs,
});
setTimeout(() => tick('startup-delay'), 10 * 1000);
// #endregion
}
schedule();