You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use Promise.all instead if you want to throw an error from a timeout or error.
42
42
// As of October 2022 you have to polyfill allSettled in React Native.
43
43
const result =awaitPromise.allSettled(promises);
@@ -209,7 +209,7 @@ Another downside is fault tolerance. By splitting the files into separate reques
209
209
210
210
### How does the local node server throttle the upload requests?
211
211
212
-
The local node server throttles the upload requests to simulate a real world scenario on a cellular connection or slower network. This helps test out the progress and timeout handling on the client. It does this by using the node`throttle` library. See the `/upload` route in [here](example/server/server.ts) for the details.
212
+
The local node server throttles the upload requests to simulate a real world scenario on a cellular connection or slower network. This helps test out the progress and timeout handling on the client. It does this by using the [node-throttle](https://github.com/TooTallNate/node-throttle) library. See the `/upload` route in [here](example/server/server.ts) for the details.
213
213
214
214
### How do I bypass the throttling on the local node server?
0 commit comments