diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-05-26 11:43:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 11:43:17 +0100 |
commit | edd9a7214c467e96f5a694598b2fbcfae3ac2912 (patch) | |
tree | 66d65b666788442ee0b42dd21f05231440d0f491 /synapse/storage/database.py | |
parent | Fix incorrect exception handling in KeyUploadServlet.on_POST (#7563) (diff) | |
download | synapse-edd9a7214c467e96f5a694598b2fbcfae3ac2912.tar.xz |
Replace device_27_unique_idx bg update with a fg one (#7562)
The bg update never managed to complete, because it kept being interrupted by transactions which want to take a lock. Just doing it in the foreground isn't that bad, and is a good deal simpler.
Diffstat (limited to 'synapse/storage/database.py')
-rw-r--r-- | synapse/storage/database.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/database.py b/synapse/storage/database.py index 9947dbce77..b112ff3df2 100644 --- a/synapse/storage/database.py +++ b/synapse/storage/database.py @@ -78,7 +78,6 @@ UNIQUE_INDEX_BACKGROUND_UPDATES = { "device_lists_remote_extremeties": "device_lists_remote_extremeties_unique_idx", "device_lists_remote_cache": "device_lists_remote_cache_unique_idx", "event_search": "event_search_event_id_idx", - "device_lists_outbound_last_success": "device_lists_outbound_last_success_unique_idx", } |