process_fts_updates: Fix log message.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2019-08-09 21:35:36 -07:00 committed by Tim Abbott
parent 473c4abca5
commit fb42cd3af9
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ cursor.execute("LISTEN fts_update_log;")
# Catch up on any historical columns
while True:
rows_updated = update_fts_columns(cursor)
logger.info("Processed %s columns catching up" % (BATCH_SIZE,))
logger.info("Processed %s rows catching up" % (rows_updated,))
if rows_updated != BATCH_SIZE:
# We're caught up, so proceed to the listening for updates phase.
break