Merge branch 'main' of github.com:adulau/hashlookup-server into main

This commit is contained in:
Alexandre Dulaunoy 2021-09-24 08:17:09 +02:00
commit b4c539114f
Signed by: adulau
GPG key ID: 09E2CD4944E6CBCD

View file

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