Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
6e6a1d50
Commit
6e6a1d50
authored
Jan 28, 2014
by
David Ormsbee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only create loc_cache CACHE entry if it doesn't exist in ENV_TOKENS config.
parent
38a6bf68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
cms/envs/aws.py
+5
-4
lms/envs/aws.py
+5
-4
No files found.
cms/envs/aws.py
View file @
6e6a1d50
...
...
@@ -124,10 +124,11 @@ LOG_DIR = ENV_TOKENS['LOG_DIR']
CACHES
=
ENV_TOKENS
[
'CACHES'
]
# Cache used for location mapping -- called many times with the same key/value
# in a given request.
CACHES
[
'loc_cache'
]
=
{
'BACKEND'
:
'django.core.cache.backends.locmem.LocMemCache'
,
'LOCATION'
:
'edx_location_mem_cache'
,
}
if
'loc_cache'
not
in
CACHES
:
CACHES
[
'loc_cache'
]
=
{
'BACKEND'
:
'django.core.cache.backends.locmem.LocMemCache'
,
'LOCATION'
:
'edx_location_mem_cache'
,
}
SESSION_COOKIE_DOMAIN
=
ENV_TOKENS
.
get
(
'SESSION_COOKIE_DOMAIN'
)
SESSION_ENGINE
=
ENV_TOKENS
.
get
(
'SESSION_ENGINE'
,
SESSION_ENGINE
)
...
...
lms/envs/aws.py
View file @
6e6a1d50
...
...
@@ -157,10 +157,11 @@ LOG_DIR = ENV_TOKENS['LOG_DIR']
CACHES
=
ENV_TOKENS
[
'CACHES'
]
# Cache used for location mapping -- called many times with the same key/value
# in a given request.
CACHES
[
'loc_cache'
]
=
{
'BACKEND'
:
'django.core.cache.backends.locmem.LocMemCache'
,
'LOCATION'
:
'edx_location_mem_cache'
,
}
if
'loc_cache'
not
in
CACHES
:
CACHES
[
'loc_cache'
]
=
{
'BACKEND'
:
'django.core.cache.backends.locmem.LocMemCache'
,
'LOCATION'
:
'edx_location_mem_cache'
,
}
# Email overrides
DEFAULT_FROM_EMAIL
=
ENV_TOKENS
.
get
(
'DEFAULT_FROM_EMAIL'
,
DEFAULT_FROM_EMAIL
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment