Commit bf4f43b0 by Chris Dodge

make sure cms/env/aws.py does not overwrite SOUTH_MIGRATION_MODULES in the same…

make sure cms/env/aws.py does not overwrite SOUTH_MIGRATION_MODULES in the same way lms/env/aws.py does it
parent 1fb0d1b1
......@@ -59,10 +59,13 @@ BROKER_HEARTBEAT_CHECKRATE = 2
# Each worker should only fetch one message at a time
CELERYD_PREFETCH_MULTIPLIER = 1
if not 'SOUTH_MIGRATION_MODULES' in vars() and not 'SOUTH_MIGRATION_MODULES' in globals():
SOUTH_MIGRATION_MODULES = {}
# Skip djcelery migrations, since we don't use the database as the broker
SOUTH_MIGRATION_MODULES = {
SOUTH_MIGRATION_MODULES.update({
'djcelery': 'ignore',
}
})
# Rename the exchange and queues for each variant
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment