diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-04-02 12:04:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 12:04:55 +0100 |
commit | af47264b78c33698f6a70ce1ce3d32774d65de72 (patch) | |
tree | 3e617e77d08f9f16814027d37ec960fe2999b57c /synapse/storage | |
parent | changelog (diff) | |
download | synapse-af47264b78c33698f6a70ce1ce3d32774d65de72.tar.xz |
review comment
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/background_updates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py index 0e430356cd..510963eb7f 100644 --- a/synapse/storage/background_updates.py +++ b/synapse/storage/background_updates.py @@ -132,7 +132,7 @@ class BackgroundUpdater(object): if self._all_done: return True - # obviously, if we have things in our queue, we're not done. + # obviously, if we are currently processing an update, we're not done. if self._current_background_update: return False |