Skip to content

Commit

Permalink
Fix missing REDIS_SSL parameter in rqconfig.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cutwater authored and daviddavis committed Apr 9, 2021
1 parent 0f802b8 commit 4e5cff1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/8525.bugfix
@@ -0,0 +1 @@
Fixed missing ``REDIS_SSL`` parameter in RQ config.
10 changes: 9 additions & 1 deletion pulpcore/rqconfig.py
Expand Up @@ -2,6 +2,14 @@

from pulpcore.app.settings import settings

rq_settings = ["REDIS_URL", "REDIS_HOST", "REDIS_PORT", "REDIS_DB", "REDIS_PASSWORD", "SENTINEL"]
rq_settings = [
"REDIS_URL",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_DB",
"REDIS_PASSWORD",
"REDIS_SSL",
"SENTINEL",
]

settings.populate_obj(sys.modules[__name__], keys=rq_settings)

0 comments on commit 4e5cff1

Please sign in to comment.