()
| 186 | |
| 187 | const statsdTags = [`version:${requestedVersion}`] |
| 188 | const doGet = () => |
| 189 | got(getProxyPath(req.path, requestedVersion), { |
| 190 | throwHttpErrors: false, |
| 191 | retry: retryConfiguration, |
| 192 | timeout: timeoutConfiguration, |
| 193 | }) |
| 194 | const r = await statsd.asyncTimer(doGet, 'archive_enterprise_proxy', [ |
| 195 | ...statsdTags, |
| 196 | `path:${req.path}`, |
nothing calls this directly
no test coverage detected