mirror of https://github.com/rq/rq.git
Use dbsize() to test for empty Redis database
This commit is contained in:
parent
bc8d4a087a
commit
63a04d275e
|
@ -20,7 +20,7 @@ def find_empty_redis_database():
|
|||
"""
|
||||
for dbnum in range(4, 17):
|
||||
testconn = StrictRedis(db=dbnum)
|
||||
empty = len(testconn.keys('*')) == 0
|
||||
empty = testconn.dbsize() == 0
|
||||
if empty:
|
||||
return testconn
|
||||
assert False, 'No empty Redis database found to run tests in.'
|
||||
|
|
Loading…
Reference in New Issue