|
@@ -37,7 +37,7 @@ const { Tus } = Uppy
|
|
|
|
|
|
## Options
|
|
|
|
|
|
-**Note**: all options are passed to `tus-js-client` and we document the ones here that we added or changed. This means you can also pass functions like [`onBeforeRequest`](https://github.com/tus/tus-js-client/blob/master/docs/api.md#onbeforerequest) and [`onAfterResponse`](https://github.com/tus/tus-js-client/blob/master/docs/api.md#onafterresponse).
|
|
|
+**Note**: all options are passed to `tus-js-client` and we document the ones here that we added or changed. This means you can also pass functions like [`onAfterResponse`](https://github.com/tus/tus-js-client/blob/master/docs/api.md#onafterresponse).
|
|
|
|
|
|
We recommended taking a look at the [API reference](https://github.com/tus/tus-js-client/blob/master/docs/api.md) from `tus-js-client` to know what is supported.
|
|
|
|
|
@@ -91,6 +91,10 @@ When uploading a chunk fails, automatically try again after the millisecond inte
|
|
|
|
|
|
Set to `null` to disable automatic retries, and fail instantly if any chunk fails to upload.
|
|
|
|
|
|
+### `onBeforeRequest(req, file)`
|
|
|
+
|
|
|
+Behaves like the [`onBeforeRequest`](https://github.com/tus/tus-js-client/blob/master/docs/api.md#onbeforerequest) function from `tus-js-client` but with the added `file` argument.
|
|
|
+
|
|
|
### `onShouldRetry: (err, retryAttempt, options, next) => next(err)`
|
|
|
|
|
|
When an upload fails `onShouldRetry` is called with the error and the default retry logic as the second argument. The default retry logic is an [exponential backoff](https://en.wikipedia.org/wiki/Exponential_backoff) algorithm triggered on HTTP 429 (Too Many Requests) errors. Meaning if your server (or proxy) returns HTTP 429 because it’s being overloaded, @uppy/tus will find the ideal sweet spot to keep uploading without overloading.
|