mirror of
https://github.com/adulau/mmdb-server.git
synced 2024-11-21 01:07:05 +00:00
addressing file not found, remove unused dict
This commit is contained in:
parent
f09a6e2999
commit
aff79f5d03
2 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
[global]
|
||||
mmdb_file = ../db/GeoOpen-Country.mmdb,../db/GeoOpen-Country-ASN.mmdb
|
||||
country_file = ../db/country.json
|
||||
mmdb_file = db/GeoOpen-Country.mmdb,db/GeoOpen-Country-ASN.mmdb
|
||||
country_file = db/country.json
|
||||
lookup_pubsub = no
|
||||
port = 8000
|
||||
|
|
|
@ -101,7 +101,6 @@ class MyGeoLookup:
|
|||
ret = []
|
||||
ips = req.access_route
|
||||
for mmdb in mmdbs:
|
||||
m = {}
|
||||
georesult = mmdb['reader'].get(ips[0])
|
||||
m = mmdb.copy()
|
||||
del m['reader']
|
||||
|
|
Loading…
Reference in a new issue