redis-lock: strict-redis is what we use.

This commit is contained in:
RhodeCode Admin 2021-07-15 14:19:47 +02:00
parent d52521dd31
commit 2b9eeb7a86

View file

@ -295,6 +295,7 @@ class BaseRedisBackend(redis_backend.RedisBackend):
name=lock_key,
expire=self.lock_timeout,
auto_renewal=False,
strict=True,
)
return lock
else: