From: Sarah Hoffmann Date: Wed, 7 Feb 2018 21:08:31 +0000 (+0100) Subject: don't log IPv6 IPs for the moment X-Git-Tag: deploy~346 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/2cb5e7b0cc7225daa81ca872449370727bbef07b don't log IPv6 IPs for the moment --- diff --git a/utils/cron_ipanalyse.py b/utils/cron_ipanalyse.py index 7975cb17..1ca2267f 100755 --- a/utils/cron_ipanalyse.py +++ b/utils/cron_ipanalyse.py @@ -389,6 +389,6 @@ if __name__ == '__main__': if blocked: fd.write(logstr % ('new block:', ', '.join(blocked))) for k,v in stats.items(): - if v.ignores_warnings() and k not in notlogged: + if v.ignores_warnings() and k not in notlogged and ':' not in k: fd.write(logstr % ('Warning ignored:', k)) fd.close()