greenwave: Avoid request errors when memcached is temporarily down

This commit is contained in:
Lukas Holecek 2022-10-05 11:56:29 +02:00 committed by zlopez
parent 88acf9c72c
commit b1775b2ae7

View file

@ -45,5 +45,9 @@ CACHE = {
'distributed_lock': True,
# Release lock in case the owner was terminated.
'lock_timeout': 120,
# Retry if memcached is temporarily down.
'enable_retry_client': True,
'retry_attempts': 15,
'retry_delay': 2, # seconds
}
}