diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-01-29 10:04:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 10:04:23 +0000 |
commit | 94fb63e44f33b6679cdb7f0bb989e9864d6babd0 (patch) | |
tree | 45fd894f292397192ab00785716f9f2d837c4837 /synapse/storage/_base.py | |
parent | Merge pull request #4493 from matrix-org/erikj/refactor_event_signing (diff) | |
download | synapse-94fb63e44f33b6679cdb7f0bb989e9864d6babd0.tar.xz |
Fix typo in upserts code (#4505)
* fix obvious problem :| * changelog
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r-- | synapse/storage/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 5109bc3e2e..4872ff55b6 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -236,7 +236,7 @@ class SQLBaseStore(object): self._unsafe_to_upsert_tables.discard("user_ips") # If there's any tables left to check, reschedule to run. - if self.updates: + if updates: self._clock.call_later( 15.0, run_as_background_process, |