]> git.openstreetmap.org Git - nominatim.git/commit
nominatim.py: use async in connect() function
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 11 Feb 2020 21:08:04 +0000 (22:08 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 11 Feb 2020 21:16:17 +0000 (22:16 +0100)
commitd1eeaa59a60362cc566498049ad02017ee9a2d17
tree9a51471b55bcffd75421d96bd69b0328b6194558
parent882f496e0a1093239a26cdbf29c9af5c5fe9977c
nominatim.py: use async in connect() function

The _async parameter name is only supported since psycopg 2.7.
However, async is a keyword in Python >= 3.7, so using this
gives us a syntax error. Working around this by defining the
parameters in a dict and handing that into the connect function.
nominatim/nominatim.py