-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Make assets watchers run as singletons #171
Conversation
@cpennington I was out this morning (and Friday afternoon). I may not be able to get to this PR until tomorrow, as I need to fix a critical bug before tomorrow's release. Sorry about the delay. |
@cpennington - is the the branch for me to test the SASS watcher improvements? |
Actually, use cale/stabilize-dev-env (which has this, and a few other fixes -Cale On Mon, Jun 17, 2013 at 2:52 PM, marcotuts [email protected] wrote:
|
Rake by default imports all .rake files in the rakelib dir, so we can use that rather than doing our own import loop.
`rake install_prereqs` requires a minimal level of ruby and rake already installed. If it doesn't exist, then print out a helpful message indicating next steps.
The preprocess task requires system and env arguments in order to correctly load up the django environment to preprocess sass files to inject themes. In order for that task to recieve the arguments, all tasks that depend on it also have to accept that same set of arguments. This will all go away once the next evolution of themes arrives, which will remove the preprocessing needed to inject theme names.
Previously, multiple copies of the watchers started from the different shells would run simultaneously, which left the possiblity of zombie watchers, increased resource consumption, and incorrect results. This fixes that problem by only starting a watcher if that same command isn't already in the process list. Fixes LMS-499
Temporary fix to allow pages that inherited the marketing template to display
…lters-to-users-api ziafazal/api-add-filters-to-users-api
from Stanford-Online:jrbl/lpl_ungenerated_certs_flag into Stanford-Online:master
…tion (openedx#171) Add a management command to create or update site configuration
…onfiguration (openedx#171)" This reverts commit 0822fca.
…x/cms-media-root specify media root in CMS and allow http scheme in aws_appsembler by env token
Previously, multiple copies of the watchers started from the different
shells would run simultaneously, which left the possiblity of zombie
watchers, increased resource consumption, and incorrect results. This
fixes that problem by only starting a watcher if that same command isn't
already in the process list.
Fixes LMS-499
@chrisndodge @cahrens: Can you guys review and test this? It should allow you to run lms and cms together more stably (although there are still other issues that may cause problems).
Depends on #185