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
10377bc4
Commit
10377bc4
authored
Apr 04, 2013
by
Mark L. Chang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added a dummy key for segment.io so it doesn't ever fail
parent
00abaffe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
cms/envs/aws.py
+2
-1
cms/envs/test.py
+2
-2
No files found.
cms/envs/aws.py
View file @
10377bc4
...
...
@@ -46,7 +46,8 @@ SESSION_COOKIE_DOMAIN = ENV_TOKENS.get('SESSION_COOKIE_DOMAIN')
for
feature
,
value
in
ENV_TOKENS
.
get
(
'MITX_FEATURES'
,
{})
.
items
():
MITX_FEATURES
[
feature
]
=
value
SEGMENT_IO_KEY
=
ENV_TOKENS
.
get
(
'SEGMENT_IO_KEY'
)
# load segment.io key, provide a dummy if it does not exist
SEGMENT_IO_KEY
=
ENV_TOKENS
.
get
(
'SEGMENT_IO_KEY'
,
'***REMOVED***'
)
LOGGING
=
get_logger_config
(
LOG_DIR
,
logging_env
=
ENV_TOKENS
[
'LOGGING_ENV'
],
...
...
cms/envs/test.py
View file @
10377bc4
...
...
@@ -119,5 +119,5 @@ PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher'
,
)
#
segment-io key for dev
SEGMENT_IO_KEY
=
'
mty8edrrsg
'
#
dummy segment-io key
SEGMENT_IO_KEY
=
'
***REMOVED***
'
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