()
| 170 | const abortController = new AbortController(); |
| 171 | |
| 172 | const r = () => { |
| 173 | refresh({ |
| 174 | endpointId, |
| 175 | spinner: connectingSpinner, |
| 176 | path: resolvedPath, |
| 177 | endpointHandlerUrl, |
| 178 | resolvedOptions, |
| 179 | hasConnected, |
| 180 | abortController, |
| 181 | }); |
| 182 | }; |
| 183 | |
| 184 | const throttle = new Throttle(r, throttleTimeMs); |
| 185 |