()
| 79 | } |
| 80 | |
| 81 | export function stopAllTimers(): void { |
| 82 | for (const [id] of timers) { |
| 83 | stopTimer(id) |
| 84 | } |
| 85 | initialized = false |
| 86 | _logger?.info('[Pull] All timers stopped') |
| 87 | } |
| 88 | |
| 89 | export function reloadTimer(dsId: string, skipInitialPull = false): void { |
| 90 | stopTimer(dsId) |
no test coverage detected