mirror of
https://github.com/adulau/hashlookup-server.git
synced 2024-11-23 18:47:11 +00:00
fix: [api/stats] existing hash value from nx removed
This commit is contained in:
parent
d6fe136421
commit
15e6f461d4
1 changed files with 1 additions and 1 deletions
|
@ -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'] = []
|
||||
|
|
Loading…
Reference in a new issue