-
Notifications
You must be signed in to change notification settings - Fork 80
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
Last Chunk of Upload not getting split #3336
Comments
Short answer: no, we haven't seen before. Background: the qiita system configuration uses Hope this helps. |
The same thing happens without using nginx, but it seems to be a known behaviour. From https://github.com/23/resumable.js/blob/master/README.md#how-do-i-set-it-up-with-my-server : Here is the discussion: 23/resumable.js#51 Now that we know that chuck size can be max. 2 times the predefined one, I think we can leave code as is, but maybe add a hint to the documentation? |
alternatively, we could add the line
|
Thank you @Anna-Rehm and @sjanssen2 ! |
Closed by #3338 |
We have observed an upload error in which the last chunk of a file does not get split according to the
resumableChunkSize
logged in the Qiita logs. This only happens if the last "chunk" is bigger than 3MB (1 chunk) but smaller than 6MB (2 chunks). We were able to solve this by setting the nginxmax client body size
to 7MB, but are still confused as to why this would happen.We wondered if you have encountered this problem before?
In the example below the file only gets divided into 2 chunks instead of 3.
The text was updated successfully, but these errors were encountered: