-
Notifications
You must be signed in to change notification settings - Fork 74
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
Will this work with s3 #28
Comments
I'm trying to switch a project to S3 (using https://github.com/jschneier/django-storages) and I'm getting an exception:
It seems that django-chunked-upload is attempting to work around a bug in Django 1.4 where inner files were not being closed properly (https://github.com/juliomalegria/django-chunked-upload/blob/master/chunked_upload/models.py#L74-L76), but I didn't see an issue or much explanation about this change. In my local testing, after closing the inner files, I am unable to re-open them again using Using However, with @juliomalegria could you provide any guidance on what changes I might need to make to I think that using S3 for storage is very common these days, especially as people are switching projects to Docker to make them scalable which generally requires a shared remote storage backend for media, so it would be great if |
The hack fix for Django 1.4 was removed in 6889442. Did that solve the issue with S3? |
will this download the whole file to local disc first and then send it to s3?
The text was updated successfully, but these errors were encountered: