summary refs log tree commit diff
path: root/synapse/storage/background_updates.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-09-24 17:11:12 +0100
committerGitHub <noreply@github.com>2019-09-24 17:11:12 +0100
commitf99a9c9cb062374eb532e3caf72eb4d2e784b574 (patch)
treefb683a5d54a2edaf8365a1894fd306d2b15188fd /synapse/storage/background_updates.py
parentMerge pull request #6037 from matrix-org/rav/saml_mapping_work (diff)
parentIncorporate review (diff)
downloadsynapse-f99a9c9cb062374eb532e3caf72eb4d2e784b574.tar.xz
Merge pull request #6092 from matrix-org/babolivier/background_update_deactivated_return
Fix the return value in the users_set_deactivated_flag background job
Diffstat (limited to 'synapse/storage/background_updates.py')
-rw-r--r--synapse/storage/background_updates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py
index e5f0668f09..9522acd972 100644
--- a/synapse/storage/background_updates.py
+++ b/synapse/storage/background_updates.py
@@ -218,7 +218,7 @@ class BackgroundUpdateStore(SQLBaseStore):
         duration_ms = time_stop - time_start
 
         logger.info(
-            "Updating %r. Updated %r items in %rms."
+            "Running background update %r. Processed %r items in %rms."
             " (total_rate=%r/ms, current_rate=%r/ms, total_updated=%r, batch_size=%r)",
             update_name,
             items_updated,