-
Notifications
You must be signed in to change notification settings - Fork 303
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
Don't invalidate caches on the Mac, and warn users that they need to restart after video download #4510
Conversation
Fixes #4483 |
@amodia The "warning message" is supposed to tell the Mac user to restart the server after downloading a video and NOT "the warning message does not show after the video download finished." as you expected. Did it show the warning message? |
Oh, there's a Reopen button! Damn I already created #4518. :( |
@@ -32,7 +34,7 @@ def update_videos(request, max_to_show=4): | |||
if getattr(settings, 'USING_RASPBERRY_PI', False): | |||
messages.warning(request, _('For low-powered devices like the Raspberry Pi, please download less than 25 videos at a time.')) | |||
|
|||
if DO_NOT_RELOAD_CONTENT_CACHE_AT_STARTUP: | |||
if DO_NOT_RELOAD_CONTENT_CACHE_AT_STARTUP or sys.platform == 'darwin': |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
edit by @cpauya: fixes #4483