We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Even though file is downloaded (i.e., media is local), it still has is_local=False.
I wrote this small program to run once in a while:
from media.models import Media ms = Media.objects.filter(is_local=False, is_requested=True) for m in ms: m.set_is_local() if m.is_local: m.save()
This should not be necessary, i.e. is_local should be updated when the download is done, following the request and running of process_requests.sh.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even though file is downloaded (i.e., media is local), it still has is_local=False.
I wrote this small program to run once in a while:
This should not be necessary, i.e. is_local should be updated when the download is done, following the request and running of process_requests.sh.
The text was updated successfully, but these errors were encountered: