the redis host needs to be configured for channel layers
otherwise the post migration signal in django will try to establish an connection to localhost, no matter what redis server ip or adress was entered
This commit is contained in:
parent
0a361665c4
commit
09e2629b64
@ -82,10 +82,15 @@ if use_redis:
|
|||||||
# Django Channels
|
# Django Channels
|
||||||
|
|
||||||
# https://channels.readthedocs.io/en/latest/topics/channel_layers.html#configuration
|
# https://channels.readthedocs.io/en/latest/topics/channel_layers.html#configuration
|
||||||
|
CHANNEL_LAYERS = {
|
||||||
CHANNEL_LAYERS['default']['BACKEND'] = 'channels_redis.core.RedisChannelLayer'
|
"default": {
|
||||||
CHANNEL_LAYERS['default']['CONFIG'] = {"capacity": 100000}
|
"BACKEND": "channels_redis.core.RedisChannelLayer",
|
||||||
|
"CONFIG": {
|
||||||
|
"hosts": [("localhost", 6379)],
|
||||||
|
"capacity": 100000,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
# Collection Cache
|
# Collection Cache
|
||||||
|
|
||||||
# Can be:
|
# Can be:
|
||||||
|
Loading…
Reference in New Issue
Block a user