()
| 1248 | } |
| 1249 | |
| 1250 | function clearBatchWebSocketReconnect() { |
| 1251 | if (batchWsReconnectTimer) { |
| 1252 | clearTimeout(batchWsReconnectTimer); |
| 1253 | batchWsReconnectTimer = null; |
| 1254 | } |
| 1255 | batchWsReconnectAttempts = 0; |
| 1256 | } |
| 1257 | |
| 1258 | function scheduleWebSocketReconnect(taskUuid) { |
| 1259 | if (!taskUuid || wsReconnectTimer || wsManualClose || taskCompleted || taskFinalStatus !== null || activeTaskUuid !== taskUuid) { |
no outgoing calls
no test coverage detected