ignore failure to get replication date

This commit is contained in:
Sarah Hoffmann
2021-02-14 12:17:30 +01:00
parent 6a7e0d652b
commit fbe7be760b
3 changed files with 27 additions and 7 deletions

View File

@@ -40,13 +40,19 @@ def compute_database_date(conn):
def set_status(conn, date, seq=None, indexed=True):
""" Replace the current status with the given status.
""" Replace the current status with the given status. If date is `None`
then only sequence and indexed will be updated as given. Otherwise
the whole status is replaced.
"""
assert date.tzinfo == dt.timezone.utc
assert date is None or date.tzinfo == dt.timezone.utc
with conn.cursor() as cur:
cur.execute("TRUNCATE TABLE import_status")
cur.execute("""INSERT INTO import_status (lastimportdate, sequence_id, indexed)
VALUES (%s, %s, %s)""", (date, seq, indexed))
if date is None:
cur.execute("UPDATE import_status set sequence_id = %s, indexed = %s",
(seq, indexed))
else:
cur.execute("TRUNCATE TABLE import_status")
cur.execute("""INSERT INTO import_status (lastimportdate, sequence_id, indexed)
VALUES (%s, %s, %s)""", (date, seq, indexed))
conn.commit()

View File

@@ -119,6 +119,7 @@ def update(conn, options):
# Write the current status to the file
endstate = repl.get_state_info(endseq)
status.set_status(conn, endstate.timestamp, seq=endseq, indexed=False)
status.set_status(conn, endstate.timestamp if endstate else None,
seq=endseq, indexed=False)
return UpdateState.UP_TO_DATE