fix: [api/stats] existing hash value from nx removed

This commit is contained in:
Alexandre Dulaunoy 2021-09-11 00:02:34 +02:00
parent d6fe136421
commit 15e6f461d4
Signed by: adulau
GPG key ID: 09E2CD4944E6CBCD

View file

@ -285,7 +285,7 @@ class stattop(Resource):
ret = {}
ret['nx'] = rdb.zrevrange("s:nx:sha1", 0, 100, withscores=True)
for val in ret['nx']:
if rdb.exists("h:".format(val)):
if rdb.exists("h:{}".format(val[0])):
ret['nx'].remove(val)
exist = rdb.zrevrange("s:exist:sha1", 0, 100, withscores=True)
ret['exist'] = []