X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/64128b699a42ec89e43d7bb754699a581db74d82..ff341985699f8148bedf142bea9c5deddaa03b6f:/nominatim/tools/tiger_data.py diff --git a/nominatim/tools/tiger_data.py b/nominatim/tools/tiger_data.py index e3adfd33..9b960e2d 100644 --- a/nominatim/tools/tiger_data.py +++ b/nominatim/tools/tiger_data.py @@ -44,9 +44,7 @@ def handle_threaded_sql_statements(sel, file): lines = 0 end_of_file = False # Using pool of database connections to execute sql statements - while True: - if end_of_file: - break + while not end_of_file: for key, _ in sel.select(1): conn = key.data try: @@ -61,7 +59,7 @@ def handle_threaded_sql_statements(sel, file): print('. ', end='', flush=True) lines = 0 except Exception as exc: # pylint: disable=broad-except - LOG.error('Wrong SQL statement: %s', exc) + LOG.info('Wrong SQL statement: %s', exc) def add_tiger_data(dsn, data_dir, threads, config, sqllib_dir):