-
Notifications
You must be signed in to change notification settings - Fork 189
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
Range Header is not obeyed when downloading a file #1346
Comments
First naive attempt here: cs3org/reva#701 |
@butonic FYI |
another alternative approach would be calling Download and then seeking forward, but I'm not sure at which level this would still result in the whole stream being passed over the network between the storage and the seeker |
tracked in reva as cs3org/reva#1395 |
Note: we added tests in owncloud/core#38247 to check various combinations of range request. We made the tests cope with that allowed variation. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 10 days if no further activity occurs. Thank you for your contributions. |
found when starting to run API tests with OCIS
try to download only a range of a file, e.g.:
curl http://localhost:9140/remote.php/webdav/home/welcome.txt -u einstein:relativity -H "Range: bytes=51-77"
Expected behaviour:
only a range of the file should be downloaded
Actual behaviour:
the complete file is downloaded
The text was updated successfully, but these errors were encountered: