-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Axios default maxBodyLength = 10MB, no way to override #45
Comments
It looks like the issue was half-fixed with this PR, which is merged in [email protected]. This allows us to specify a However, it's only "half-fixed" because you need to explicitly pass Perhaps using the file part size as the |
I can confirm that with [email protected] it works. |
…e limit (see also yakovkhalinsky/backblaze-b2#45 (comment) for more details).
I currently worked this around with
Since response is undefined an interceptor like the following goes in error while trying to access statusText on undefined!
|
One way to configure maxBodyLength in axios |
#62 should fix this - allows access to the underlying axios object |
#62 merged, fixed. |
I can confirm here that for those of you using putFileContents having an issue here,
|
Looks like the switch to Axios has also limited upload parts to 10MB, since there's no way to access the underlying Axios object to set a larger maxBodyLength.
The text was updated successfully, but these errors were encountered: