(serverId)
| 276 | } |
| 277 | |
| 278 | function clearHubRetry(serverId) { |
| 279 | if (!hubRetryTimers.has(serverId)) return; |
| 280 | clearTimeout(hubRetryTimers.get(serverId)); |
| 281 | hubRetryTimers.delete(serverId); |
| 282 | } |
| 283 | |
| 284 | function scheduleHubRetry(serverId) { |
| 285 | if (hubRetryTimers.has(serverId)) return; |
no outgoing calls
no test coverage detected