mirror of
https://github.com/element-hq/synapse.git
synced 2026-08-27 07:09:57 +00:00
fix ordering of bg update (#10291)
this was a typo introduced in #10282. We don't want to end up doing the `replace_stream_ordering_column` update after anything that comes up in migration 60/03.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Fix a long-standing bug where Synapse would return errors after 2<sup>31</sup> events were handled by the server.
|
||||
@@ -42,4 +42,4 @@ INSERT INTO background_updates (ordering, update_name, progress_json, depends_on
|
||||
|
||||
-- ... and another to do the switcheroo
|
||||
INSERT INTO background_updates (ordering, update_name, progress_json, depends_on) VALUES
|
||||
(6003, 'replace_stream_ordering_column', '{}', 'index_stream_ordering2_ts');
|
||||
(6001, 'replace_stream_ordering_column', '{}', 'index_stream_ordering2_ts');
|
||||
|
||||
Reference in New Issue
Block a user