]> git.openstreetmap.org Git - nominatim.git/commitdiff
commit changes to replication log table
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 26 May 2021 09:47:08 +0000 (11:47 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 30 May 2021 13:09:36 +0000 (15:09 +0200)
Fixes #2350.

nominatim/clicmd/replication.py

index f9c5561a5c53edd099bb0855e9a58562335e3514..686cefde16d443f3530342b2341dbfd3b74ec286 100644 (file)
@@ -114,6 +114,7 @@ class UpdateReplication:
                 if state is not replication.UpdateState.NO_CHANGES:
                     status.log_status(conn, start, 'import')
                 batchdate, _, _ = status.get_status(conn)
+                conn.commit()
 
             if state is not replication.UpdateState.NO_CHANGES and args.do_index:
                 index_start = dt.datetime.now(dt.timezone.utc)
@@ -125,6 +126,7 @@ class UpdateReplication:
                 with connect(args.config.get_libpq_dsn()) as conn:
                     status.set_indexed(conn, True)
                     status.log_status(conn, index_start, 'index')
+                    conn.commit()
             else:
                 index_start = None