fix lost messages when queuing many files

This commit is contained in:
jonaswinkler 2021-02-04 23:32:11 +01:00
parent 222fb48378
commit 138f38d1f3

View File

@ -160,6 +160,8 @@ CHANNEL_LAYERS = {
"BACKEND": "channels_redis.core.RedisChannelLayer",
"CONFIG": {
"hosts": [os.getenv("PAPERLESS_REDIS", "redis://localhost:6379")],
"capacity": 2000, # default 100
"expiry": 15, # default 60
},
},
}