diff --git a/cms/envs/production.py b/cms/envs/production.py index a2228bf117..0aec2763e1 100644 --- a/cms/envs/production.py +++ b/cms/envs/production.py @@ -213,6 +213,7 @@ if 'staticfiles' in CACHES: # Once we have migrated to service assets off S3, then we can convert this back to # managed by the yaml file contents STATICFILES_STORAGE = os.environ.get('STATICFILES_STORAGE', ENV_TOKENS.get('STATICFILES_STORAGE', STATICFILES_STORAGE)) +STATICFILES_STORAGE_KWARGS = ENV_TOKENS.get('STATICFILES_STORAGE_KWARGS', STATICFILES_STORAGE_KWARGS) # Load all AWS_ prefixed variables to allow an S3Boto3Storage to be configured _locals = locals() diff --git a/lms/envs/production.py b/lms/envs/production.py index 4fe8e2b9ff..557a716b7a 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -249,6 +249,7 @@ if 'staticfiles' in CACHES: # Once we have migrated to service assets off S3, then we can convert this back to # managed by the yaml file contents STATICFILES_STORAGE = os.environ.get('STATICFILES_STORAGE', ENV_TOKENS.get('STATICFILES_STORAGE', STATICFILES_STORAGE)) +STATICFILES_STORAGE_KWARGS = ENV_TOKENS.get('STATICFILES_STORAGE_KWARGS', STATICFILES_STORAGE_KWARGS) # Load all AWS_ prefixed variables to allow an S3Boto3Storage to be configured _locals = locals()