mirror of https://github.com/ansible/ansible.git
Fix redis cache for python3
According to the redis-py docs, zrank will return the 0 based index for the value in the sorted set. So the logic here wasn't right to begin with (It just means that a value at the 0-th position would never show up as cached). Need to compare against None to know if the value exists in the cache. https://redis-py.readthedocs.io/en/latest/#redis.StrictRedis.zrank Fixes #25590pull/20717/head
parent
498aea8acc
commit
90b1d780eb
Loading…
Reference in New Issue