]> 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>
Wed, 26 May 2021 09:47:08 +0000 (11:47 +0200)
Fixes #2350.

nominatim/clicmd/replication.py

index 69939430188838bb69f89bfe9ae041eb3cac1989..242b0f6a0b00c80bacc05ef01b97823e6bed2dfd 100644 (file)
@@ -116,6 +116,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)
@@ -127,6 +128,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