()
| 391 | } |
| 392 | |
| 393 | export function startHubProbes() { |
| 394 | stopHubProbes(); |
| 395 | probeAllServers(); |
| 396 | hubProbeTimer = setInterval(() => probeAllServers(), HUB_PROBE_INTERVAL_MS); |
| 397 | } |
| 398 | |
| 399 | export function stopHubProbes() { |
| 400 | if (hubProbeTimer) { clearInterval(hubProbeTimer); hubProbeTimer = null; } |
no test coverage detected