Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
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
configuration
Commits
3364e982
Unverified
Commit
3364e982
authored
Mar 16, 2018
by
Kevin Falcone
Committed by
GitHub
Mar 16, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4313 from open-craft/jill/xqueue-session-engine-upstream
Allow the xqueue session engine to be configurable.
parents
782de65b
dc616cb3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
CHANGELOG.md
+5
-1
playbooks/roles/xqueue/defaults/main.yml
+5
-0
No files found.
CHANGELOG.md
View file @
3364e982
-
Role: xqueue
-
Added
`XQUEUE_SESSION_ENGINE`
to allow a configurable xqueue session engine.
-
Added
`XQUEUE_CACHES`
to allow a configurable xqueue cache.
-
Role: devpi
-
New role added to configure a devpi service as a pass-through cache for PyPI.
...
...
@@ -15,7 +19,7 @@
-
Role: edxapp
-
Added
`EDXAPP_FERNET_KEYS`
to allow for use of django-fernet-keys in LMS.
-
Role: edxapp
-
Added
`EDX_PLATFORM_REVISION`
(set from
`edx_platform_version`
). This is for
edx-platform debugging purposes, and replaces calling dealer.git at startup.
...
...
playbooks/roles/xqueue/defaults/main.yml
View file @
3364e982
...
...
@@ -59,6 +59,9 @@ XQUEUE_SETTINGS_MODULE: "xqueue.aws_settings"
XQUEUE_WORKERS
:
!!null
XQUEUE_WORKERS_PER_QUEUE
:
12
XQUEUE_SESSION_ENGINE
:
!!null
XQUEUE_CACHES
:
!!null
# Internal vars below this line
#############################################
...
...
@@ -91,6 +94,8 @@ xqueue_env_config:
RABBIT_PORT
:
"
{{
XQUEUE_RABBITMQ_PORT
}}"
RABBIT_VHOST
:
"
{{
XQUEUE_RABBITMQ_VHOST
}}"
RABBIT_TLS
:
"
{{
XQUEUE_RABBITMQ_TLS
}}"
SESSION_ENGINE
:
"
{{
XQUEUE_SESSION_ENGINE
}}"
CACHES
:
"
{{
XQUEUE_CACHES
}}"
LOCAL_LOGLEVEL
:
"
{{
XQUEUE_LOCAL_LOGLEVEL
}}"
UPLOAD_BUCKET
:
"
{{
XQUEUE_UPLOAD_BUCKET
}}"
UPLOAD_PATH_PREFIX
:
"
{{
XQUEUE_UPLOAD_PATH_PREFIX
}}"
...
...
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