We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b317c8 commit 1af5cc8Copy full SHA for 1af5cc8
coldfront/config/base.py
@@ -98,10 +98,12 @@
98
# Django Q2
99
#------------------------------------------------------------------------------
100
Q_CLUSTER = {
101
- 'host': ENV.str('REDIS_HOSTNAME', default="localhost"),
102
- 'password': ENV.str('REDIS_PASSWORD', default="password"),
103
'timeout': ENV.int('Q_CLUSTER_TIMEOUT', default=120),
104
'retry': ENV.int('Q_CLUSTER_RETRY', default=120),
+ 'redis': {
+ 'host': ENV.str('REDIS_HOSTNAME', default="localhost"),
105
+ 'password': ENV.str('REDIS_PASSWORD', default="password"),
106
+ },
107
}
108
109
0 commit comments