rsnext/packages/next/telemetry/post-payload.ts
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

31 lines
762 B
TypeScript

import retry from 'async-retry'
import fetch from 'node-fetch'
export function _postPayload(endpoint: string, body: object) {
return (
retry(
() =>
fetch(endpoint, {
method: 'POST',
body: JSON.stringify(body),
headers: { 'content-type': 'application/json' },
timeout: 5000,
}).then(res => {
if (!res.ok) {
const err = new Error(res.statusText)
;(err as any).response = res
throw err
}
}),
{ minTimeout: 500, retries: 1, factor: 1 }
)
.catch(() => {
// We swallow errors when telemetry cannot be sent
})
// Ensure promise is voided
.then(
() => {},
() => {}
)
)
}